diff options
author | Luca Deri <deri@ntop.org> | 2016-12-05 19:15:45 +0100 |
---|---|---|
committer | Luca Deri <deri@ntop.org> | 2016-12-05 19:15:45 +0100 |
commit | b019dcd11a0c62bd9eb3f28d37ecc68e99e8c294 (patch) | |
tree | a8cccd1b409dbf75f32cb7b9964ead961dd20392 /example/Makefile.am | |
parent | 163945f4b41afade6015e2a38e249899013d43cd (diff) |
Added missing -ldl library
Diffstat (limited to 'example/Makefile.am')
-rw-r--r-- | example/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/example/Makefile.am b/example/Makefile.am index a6f276669..662f5a3ba 100644 --- a/example/Makefile.am +++ b/example/Makefile.am @@ -3,7 +3,7 @@ bin_PROGRAMS = ndpiReader AM_CPPFLAGS = -I$(top_srcdir)/src/include @PCAP_INC@ AM_CFLAGS = @PTHREAD_CFLAGS@ # --coverage -LDADD = $(top_builddir)/src/lib/libndpi.la @JSON_C_LIB@ @PTHREAD_LIBS@ @PCAP_LIB@ +LDADD = $(top_builddir)/src/lib/libndpi.la @JSON_C_LIB@ @PTHREAD_LIBS@ @PCAP_LIB@ -ldl AM_LDFLAGS = -static @DL_LIB@ ndpiReader_SOURCES = ndpiReader.c ndpi_util.c ndpi_util.h |