diff options
author | Toni <matzeton@googlemail.com> | 2021-05-09 15:09:43 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-09 15:09:43 +0200 |
commit | 8c28613eb27983272912d0b99e510eff5416ac60 (patch) | |
tree | 910dc86e4ae00811a7a01d9e9057a02615dcffcf /example/Makefile.in | |
parent | 0663544be8a0e0ea644655b736f9b0a47453c105 (diff) |
Check datalink during fuzzing to prevent console / logfile spam. See #1175 for more information. (#1177)
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'example/Makefile.in')
-rw-r--r-- | example/Makefile.in | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/example/Makefile.in b/example/Makefile.in index e70bff36c..ec44acbe3 100644 --- a/example/Makefile.in +++ b/example/Makefile.in @@ -1,7 +1,6 @@ CC=@CC@ CXX=@CXX@ BUILD_MINGW=@BUILD_MINGW@ -BUILD_FUZZTARGETS=@BUILD_FUZZTARGETS@ SRCHOME=../src CFLAGS=-g -fPIC -DPIC -I$(SRCHOME)/include @PCAP_INC@ @CFLAGS@ LIBNDPI=$(SRCHOME)/lib/libndpi.a @@ -11,10 +10,6 @@ HEADERS=intrusion_detection.h reader_util.h $(SRCHOME)/include/ndpi_api.h \ OBJS=ndpiReader.o reader_util.o intrusion_detection.o PREFIX?=@prefix@ -ifneq ($(BUILD_FUZZTARGETS),) -CFLAGS += -DBUILD_FUZZTARGETS=1 -endif - ifneq ($(BUILD_MINGW),) all: @echo 'Examples disabled due to mingw build.' |