freebsd-ports/sysutils/fetchlog/files/patch-aa
Kirill Ponomarev 4158a5b013 The fetchlog utility displays the last new messages of a
logfile. It is similar like tail (1) but offers some extra
functionality for output formatting. To show only the new
messages appeared since the last call fetchlog uses a bookmark
to remember which messages have been fetched.

PR:		55506
Submitted by:	Alexander Haderer <alexander.haderer@charite.de>
2003-09-28 15:39:46 +00:00

23 lines
681 B
Text

--- Makefile.orig Mon Aug 11 18:58:18 2003
+++ Makefile Mon Aug 11 19:02:35 2003
@@ -23,8 +23,9 @@
### compiler
### gcc
-CC=gcc
-CFLAGS= -O -Wall -Wcast-qual -Wstrict-prototypes \
+#CC=gcc
+CC ?= =cc
+CFLAGS += -O -Wall -Wcast-qual -Wstrict-prototypes \
-Wmissing-prototypes -Wmissing-declarations -Winline -Wcast-align
### cc
#CC=cc
@@ -62,7 +63,7 @@
### installdir
### will use $INSTDIR/bin and $INSTDIR/man/man1,
### both dirs have to exist for installation
-INSTDIR=/usr/local
+INSTDIR=${PREFIX}
### ------------------------------------------------------------------------
### --- end of user settings -----------------------------------------------