diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2000-01-20 17:16:07 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2000-01-20 17:16:07 +0000 |
commit | 9daf266e5e01a8ceaad71ff5a957ab13f6ff5978 (patch) | |
tree | 8b35afa947369535698eeb817e6bef57d185d451 /security/logcheck | |
parent | dbddd321bacaade6a0618039206f684a4042741c (diff) | |
download | ports-9daf266e5e01a8ceaad71ff5a957ab13f6ff5978.tar.gz ports-9daf266e5e01a8ceaad71ff5a957ab13f6ff5978.zip |
Notes
Diffstat (limited to 'security/logcheck')
-rw-r--r-- | security/logcheck/files/patch-aa | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/security/logcheck/files/patch-aa b/security/logcheck/files/patch-aa index 9b122f884394..47b35dde4f4b 100644 --- a/security/logcheck/files/patch-aa +++ b/security/logcheck/files/patch-aa @@ -1,14 +1,23 @@ ---- Makefile.orig Sun Oct 31 09:07:29 1999 -+++ Makefile Fri Dec 24 16:37:46 1999 -@@ -5,6 +5,8 @@ +--- Makefile.orig Sun Oct 31 07:07:29 1999 ++++ Makefile Thu Jan 20 09:14:40 2000 +@@ -5,13 +5,15 @@ # Thanks to rbulling@obscure.org for cleaning this Makefile up.. # +SYSTYPE=freebsd + # Generic compiler - CC = cc +- CC = cc ++ CC ?= cc # GNU.. + # CC = gcc + + # Normal systems flags +-CFLAGS = -O ++CFLAGS ?= -O + # Braindead HPUX compiler flags + #CFLAGS = -O -Aa + @@ -35,19 +37,7 @@ # Debug mode for logtail # CFLAGS = -g -DDEBUG |