net-analyzer/hunt: remove unused patch

Package-Manager: Portage-3.0.11, Repoman-3.0.2
Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger@gmail.com>
Signed-off-by: David Seifert <soap@gentoo.org>
This commit is contained in:
Michael Mair-Keimberger
2020-12-12 14:34:51 +01:00
committed by David Seifert
parent ff71922ee2
commit 7660b80e62

View File

@@ -1,21 +0,0 @@
--- a/Makefile
+++ b/Makefile
@@ -1,8 +1,7 @@
-CFLAGS=-Wall -O2 -g -D_REENTRANT
+CFLAGS += -I. -Wall -D_REENTRANT
#CFLAGS+=-DSYNC_FAST
#CFLAGS+=-D_WITH_LINUX_KERNEL_HDR
-LDFLAGS=
#LDFLAGS=-static
OBJ=hunt.o main.o c/list.o c/hash.o c/array.o util.o net.o \
@@ -11,7 +10,7 @@
addpolicy.o options.o resolv.o timer.o pktrelay.o
hunt: $(OBJ)
- $(CC) ${LDFLAGS} -o $@ $^ -lpthread
+ $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $^ -lpthread
hunt_static: $(OBJ)
$(CC) ${LDFLAGS} -static -o $@ $^ -lpthread