diff options
author | Toni <matzeton@googlemail.com> | 2021-07-28 22:24:03 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-28 22:24:03 +0200 |
commit | 13c5d6801e3b9fdc71bec88c300243a939346a8d (patch) | |
tree | f75bddab3dbbe4c36830f616fc0d588291812c3f /example/Makefile.in | |
parent | cb26a8c82d31be22cdefcb5226a7847df93adf43 (diff) |
Improved libm check via Autoconf. (#1263)
* libm will now be part of @ADDITIONAL_LIBS@ (if required)
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'example/Makefile.in')
-rw-r--r-- | example/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/example/Makefile.in b/example/Makefile.in index ec44acbe3..cef1edb63 100644 --- a/example/Makefile.in +++ b/example/Makefile.in @@ -4,7 +4,7 @@ BUILD_MINGW=@BUILD_MINGW@ SRCHOME=../src CFLAGS=-g -fPIC -DPIC -I$(SRCHOME)/include @PCAP_INC@ @CFLAGS@ LIBNDPI=$(SRCHOME)/lib/libndpi.a -LDFLAGS=$(LIBNDPI) @PCAP_LIB@ @LIBS@ @ADDITIONAL_LIBS@ -lpthread -lm @LDFLAGS@ +LDFLAGS=$(LIBNDPI) @PCAP_LIB@ @LIBS@ @ADDITIONAL_LIBS@ -lpthread @LDFLAGS@ HEADERS=intrusion_detection.h reader_util.h $(SRCHOME)/include/ndpi_api.h \ $(SRCHOME)/include/ndpi_typedefs.h $(SRCHOME)/include/ndpi_protocol_ids.h OBJS=ndpiReader.o reader_util.o intrusion_detection.o |