diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2000-07-01 23:28:26 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2000-07-01 23:28:26 +0000 |
commit | 55dc62917771120ab3f726076a8c8886cf37bbae (patch) | |
tree | 87924fbf417292fda69d97449b2d312a2188735a /net-mgmt | |
parent | 0778a5cda7d2511e2f58fe7dc2ce2e8dbe6641e2 (diff) |
Respect CC and CFLAGS
Notes
Notes:
svn path=/head/; revision=30052
Diffstat (limited to 'net-mgmt')
-rw-r--r-- | net-mgmt/sting/files/patch-aa | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/net-mgmt/sting/files/patch-aa b/net-mgmt/sting/files/patch-aa index 87417fd343fa..97e617a7d8cd 100644 --- a/net-mgmt/sting/files/patch-aa +++ b/net-mgmt/sting/files/patch-aa @@ -1,10 +1,18 @@ ---- Makefile Fri Nov 5 06:00:22 1999 -+++ Makefile.new Wed May 10 11:11:23 2000 -@@ -42,7 +42,7 @@ +--- Makefile.orig Thu Nov 4 11:00:22 1999 ++++ Makefile Sat Jul 1 16:27:33 2000 +@@ -37,12 +37,13 @@ + HDR = inet.h capture.h gmt2local.h distribtion.h + + LIBPCAP = ./libpcap-0.4 +-CC = gcc ++CC ?= gcc ++CFLAGS ?= -O -pipe + OBJS = version.o $(SRC:.c=.o) INCLS = -I. -I$(LIBPCAP) DEFS = -DRETSIGTYPE=void -DHAVE_SIGACTION=1 - CFLAGS = -Wall $(CCOPT) $(DEFS) $(INCLS) +-CFLAGS = -Wall $(CCOPT) $(DEFS) $(INCLS) -LIBS = -lm $(LIBPCAP)/libpcap.a ++CFLAGS += -Wall $(DEFS) $(INCLS) +LIBS = -lm -lpcap all: sting |