1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-04 22:33:27 +00:00
freebsd-ports/security/l0pht-watch/files/patch-aa

29 lines
815 B
Plaintext
Raw Normal View History

--- Makefile.orig Thu Sep 23 10:18:18 1999
+++ Makefile Tue Apr 25 00:30:11 2000
@@ -9,12 +9,13 @@
# debugging
# DFLAGS = -DTEST -DDEBUG
DFLAGS = -DREGEX
-CFLAGS =-O -Wall
+CFLAGS ?=-O -Wall
XFLAGS = # xtra cflags, set by systype targets
XLIBS = # xtra libs if necessary?
# -Bstatic for sunos, -static for gcc, etc. You want this, trust me.
1999-04-16 10:33:19 +00:00
STATIC =
-CC = cc $(CFLAGS)
+CC ?= cc
+CC += $(CFLAGS)
1999-04-16 10:33:19 +00:00
LD = $(CC) -s # linker; defaults to stripped executables
o = o # object extension
CKTEMP_OBJS=check_tmp.o daemon.o list_utils.o usage.o
@@ -60,7 +61,8 @@
1999-04-16 10:33:19 +00:00
OpenBSD:
make -e $(ALL) $(MFLAGS) \
- XFLAGS='-DBSD -DREGEX -DREGCOMP_3C' CC="gcc $(CFLAGS)" STATIC=-static
+ XFLAGS='-DREGEX -DREGCOMP_3C' CC="$(CC) $(CFLAGS)" \
1999-04-16 10:33:19 +00:00
+ STATIC=-static
generic:
make -e $(ALL) $(MFLAGS) \