diff options
Diffstat (limited to 'security/l0pht-watch/files/patch-Makefile')
-rw-r--r-- | security/l0pht-watch/files/patch-Makefile | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/security/l0pht-watch/files/patch-Makefile b/security/l0pht-watch/files/patch-Makefile new file mode 100644 index 000000000000..71bee0618872 --- /dev/null +++ b/security/l0pht-watch/files/patch-Makefile @@ -0,0 +1,28 @@ +--- 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. + STATIC = +-CC = cc $(CFLAGS) ++CC ?= cc ++CC += $(CFLAGS) + 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 @@ + + OpenBSD: + make -e $(ALL) $(MFLAGS) \ +- XFLAGS='-DBSD -DREGEX -DREGCOMP_3C' CC="gcc $(CFLAGS)" STATIC=-static ++ XFLAGS='-DREGEX -DREGCOMP_3C' CC="$(CC) $(CFLAGS)" \ ++ STATIC=-static + + generic: + make -e $(ALL) $(MFLAGS) \ |