diff options
author | Luca Deri <deri@ntop.org> | 2016-11-02 20:48:22 +0100 |
---|---|---|
committer | Luca Deri <deri@ntop.org> | 2016-11-02 20:48:22 +0100 |
commit | 6f0232763c00084ae9ad64ab9aff597a7f85963c (patch) | |
tree | 70c1b4a0ce60611808ade14f03fbf5106c9348cf | |
parent | 097ba22a595f7d5e8f4f58dcd4c3e7e77d71e355 (diff) |
Added -ldl needed by PF_RING
-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 a55212c92..c1eee8496 100644 --- a/example/Makefile.am +++ b/example/Makefile.am @@ -4,7 +4,7 @@ AM_CPPFLAGS = -I$(top_srcdir)/src/include @PCAP_INC@ AM_CFLAGS = @PTHREAD_CFLAGS@ LDADD = $(top_builddir)/src/lib/libndpi.la @JSON_C_LIB@ @PTHREAD_LIBS@ @PCAP_LIB@ -AM_LDFLAGS = -static +AM_LDFLAGS = -static -ldl ndpiReader_SOURCES = ndpiReader.c ndpi_util.c ndpi_util.h |