1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-05 22:43:24 +00:00
freebsd-ports/net/sniffit/files/patch-01
1998-08-17 07:25:18 +00:00

26 lines
843 B
Plaintext

--- Makefile.in.orig Thu Jul 16 09:17:10 1998
+++ Makefile.in Sun Aug 16 23:20:29 1998
@@ -10,10 +10,10 @@
LIBS = @LIBS@
DEFS = @DEFS@
OS_OPT = @OS_OPT@
-OBJ_FLAG = -w -O2 -c
-OBJ_OPT = -I./libpcap -L./libpcap
-EXE_FLAG = -w -O2 -o sniffit
-EXE_OPT = -I./libpcap -L./libpcap -lpcap
+OBJ_FLAG = $(CFLAGS) -w -c
+#OBJ_OPT = -I./libpcap -L./libpcap
+EXE_FLAG = $(CFLAGS) -w -o sniffit
+EXE_OPT = -lpcap
EXE_OBJ = sn_packets.o sn_generation.o sn_interface.o sn_cfgfile.o \
sn_logfile.o sn_resolv.o
DEP_FILES = sn_config.h ./libpcap/pcap.h sn_data.h sn_defines.h sn_plugins.h \
@@ -26,7 +26,6 @@
@echo "Succesfull compilation..."
sniffit: $(SNIFFIT) $(DEP_FILES)
- cd libpcap; make; cd ..
$(CC) $(EXE_FLAG) $(SNIFFIT) $(EXE_OBJ) $(EXE_OPT) $(LIBS) $(DEFS) $(OS_OPT)
strip sniffit