diff options
author | Luca <deri@ntop.org> | 2018-07-21 16:27:05 +0200 |
---|---|---|
committer | Luca <deri@ntop.org> | 2018-07-21 16:27:05 +0200 |
commit | 5246656ae000916464541ffb5b6f61077ee281e7 (patch) | |
tree | 5f2a31ef826cd45ab77a8797acb7460b10afaebb | |
parent | f828dfc202b23f06e8613a9f6baf8d8b07580760 (diff) |
Fixed required library prefix
-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 9eedc21d8..e50d8c05c 100644 --- a/example/Makefile.am +++ b/example/Makefile.am @@ -3,7 +3,7 @@ bin_PROGRAMS = ndpiReader AM_CPPFLAGS = -I$(top_srcdir)/src/include -I$(top_srcdir)/src/lib/third_party/include @PCAP_INC@ @HS_INC@ AM_CFLAGS = @PTHREAD_CFLAGS@ # --coverage -LDADD = $(top_builddir)/src/lib/libndpi.la @JSON_C_LIB@ @PTHREAD_LIBS@ @PCAP_LIB@ @DL_LIB@ @HS_LIB@ -lm +LDADD = $(top_builddir)/src/lib/libndpi.a @JSON_C_LIB@ @PTHREAD_LIBS@ @PCAP_LIB@ @DL_LIB@ @HS_LIB@ -lm AM_LDFLAGS = -static @DL_LIB@ @HS_LIB@ ndpiReader_SOURCES = ndpiReader.c ndpi_util.c ndpi_util.h uthash.h |