aboutsummaryrefslogtreecommitdiff
path: root/example/Makefile.dpdk.in
diff options
context:
space:
mode:
authorToni <matzeton@googlemail.com>2021-07-28 22:24:03 +0200
committerGitHub <noreply@github.com>2021-07-28 22:24:03 +0200
commit13c5d6801e3b9fdc71bec88c300243a939346a8d (patch)
treef75bddab3dbbe4c36830f616fc0d588291812c3f /example/Makefile.dpdk.in
parentcb26a8c82d31be22cdefcb5226a7847df93adf43 (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.dpdk.in')
-rw-r--r--example/Makefile.dpdk.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/example/Makefile.dpdk.in b/example/Makefile.dpdk.in
index 8c452ae79..cd703414b 100644
--- a/example/Makefile.dpdk.in
+++ b/example/Makefile.dpdk.in
@@ -21,7 +21,7 @@ SRCS-y := reader_util.c intrusion_detection.c ndpiReader.c
CFLAGS += -g
CFLAGS += -Wno-strict-prototypes -Wno-missing-prototypes -Wno-missing-declarations -Wno-unused-parameter -I $(PWD)/../src/include @CFLAGS@ -DUSE_DPDK
-LDLIBS = $(LIBNDPI) @PCAP_LIB@ @LIBS@ -lpthread -lm @LDFLAGS@
+LDLIBS = $(LIBNDPI) @PCAP_LIB@ @LIBS@ @ADDITIONAL_LIBS@ -lpthread @LDFLAGS@
include $(RTE_SDK)/mk/rte.extapp.mk