mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-21 00:25:50 +00:00
21 lines
574 B
Plaintext
21 lines
574 B
Plaintext
--- ./Makefile.orig 2010-07-10 08:57:32.000000000 -0400
|
|
+++ ./Makefile 2013-10-25 11:33:34.000000000 -0400
|
|
@@ -1,16 +1,14 @@
|
|
# IMHO auto{make,conf} is overkill. Simple, readable makefiles improve security
|
|
|
|
-prefix=/usr/local
|
|
NAME = since
|
|
VERSION = 1.1
|
|
|
|
-CFLAGS = -Wall -O2 -DVERSION=\"$(VERSION)\"
|
|
+CFLAGS += -Wall -DVERSION=\"$(VERSION)\"
|
|
# disable/enable as desired
|
|
CFLAGS += $(shell test -f /usr/include/sys/inotify.h && echo -DUSE_INOTIFY)
|
|
CFLAGS += -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
|
|
#CFLAGS += -DDEBUG
|
|
|
|
-CC = gcc
|
|
RM = rm -f
|
|
INSTALL = install -D
|
|
|