diff options
author | Toni <matzeton@googlemail.com> | 2022-07-13 19:44:18 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-13 19:44:18 +0200 |
commit | 7c19de49047a5731f3107ff17854e9afe839cc61 (patch) | |
tree | 82b3c52661fcfc6493eb54f280c7a0be4e6154ee /example | |
parent | ae2bedce3aa151d55e7bce46188d206f9fe0abec (diff) |
Do not interfere with CFLAGS/LDFLAGS env anymore. (#1659)
* CI fixes
* some build systems do not like that (e.g. OpenWrt)
* fixed some rrdtool related build warnings/errors
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'example')
-rw-r--r-- | example/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/example/Makefile.in b/example/Makefile.in index f8f68efa7..73bc51986 100644 --- a/example/Makefile.in +++ b/example/Makefile.in @@ -9,8 +9,8 @@ SRCHOME=../src ifneq ($(OS),Windows_NT) CFLAGS+=-fPIC -DPIC endif -CFLAGS+=-I$(SRCHOME)/include @PCAP_INC@ @CFLAGS@ @GPROF_CFLAGS@ -LDFLAGS=@LDFLAGS@ +CFLAGS+=-I$(SRCHOME)/include @NDPI_CFLAGS@ @PCAP_INC@ @GPROF_CFLAGS@ +LDFLAGS+=@NDPI_LDFLAGS@ LIBNDPI=$(SRCHOME)/lib/libndpi.a LIBS=$(LIBNDPI) @PCAP_LIB@ @ADDITIONAL_LIBS@ @LIBS@ @GPROF_LIBS@ HEADERS=reader_util.h $(SRCHOME)/include/ndpi_api.h \ |