1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-05 22:43:24 +00:00
freebsd-ports/security/tripwire/files/patch-ab

63 lines
1.7 KiB
Plaintext
Raw Normal View History

*** Makefile Mon Jul 25 10:59:41 1994
--- Makefile Thu Jan 2 12:04:35 1997
***************
*** 34,36 ****
# you can use ANSI C if you like, but K&R is equally fine.
! CC = cc # common
#CC = gcc # also common
--- 34,36 ----
# you can use ANSI C if you like, but K&R is equally fine.
! #CC = cc # common
#CC = gcc # also common
***************
*** 38,40 ****
! CFLAGS = -O # common
#CFLAGS = -g # common
--- 38,40 ----
! #CFLAGS = -O # common
#CFLAGS = -g # common
***************
*** 60,66 ****
#CPP = /lib/cpp # on older systems
# make sure libraries are not linked dynamically (as a security measure)
! LDFLAGS= # common
#LDFLAGS= -non_shared # OSF/1
#LDFLAGS= -Bstatic # SunOS 4 (cannot statically link tripwire
# on Solaris 2.3)
--- 60,67 ----
#CPP = /lib/cpp # on older systems
# make sure libraries are not linked dynamically (as a security measure)
! LDFLAGS= -static
! #LDFLAGS= # common
#LDFLAGS= -non_shared # OSF/1
#LDFLAGS= -Bstatic # SunOS 4 (cannot statically link tripwire
# on Solaris 2.3)
--- src/Makefile.orig Mon Jul 25 10:40:54 1994
+++ src/Makefile Sun May 28 15:52:25 2000
@@ -3,7 +3,7 @@
# Tripwire build
#
-CFLAGS = -O
+#CFLAGS = -O
OFILES = config.parse.o main.o list.o ignorevec.o dbase.build.o \
utils.o preen.o preen.interp.o preen.report.o \
@@ -103,8 +103,9 @@
.c.o:
$(CC) $(CFLAGS) -c $<
-install: tripwire
+install: tripwire siggen
$(INSTALL) tripwire $(DESTDIR)
+ $(INSTALL) siggen $(DESTDIR)
clean:
-rm -f $(OFILES) config.lex.c config.pre.c y.tab.c lex.yy.c help.c \