aboutsummaryrefslogtreecommitdiff
path: root/www/pserv
diff options
context:
space:
mode:
authorOliver Lehmann <oliver@FreeBSD.org>2005-05-28 09:10:02 +0000
committerOliver Lehmann <oliver@FreeBSD.org>2005-05-28 09:10:02 +0000
commitb042dea393f8a4a96c3e979d51f8ba5c0f267df1 (patch)
tree96160c25eee4281be8eef099b892a78d272e9b27 /www/pserv
parente63323d90203c910f5e65db7a164e6cef20dcb49 (diff)
downloadports-b042dea393f8a4a96c3e979d51f8ba5c0f267df1.tar.gz
ports-b042dea393f8a4a96c3e979d51f8ba5c0f267df1.zip
that has to be removed for the 3.3 update
Notes
Notes: svn path=/head/; revision=136327
Diffstat (limited to 'www/pserv')
-rw-r--r--www/pserv/files/patch-Makefile17
1 files changed, 0 insertions, 17 deletions
diff --git a/www/pserv/files/patch-Makefile b/www/pserv/files/patch-Makefile
deleted file mode 100644
index 29e0af094a5d..000000000000
--- a/www/pserv/files/patch-Makefile
+++ /dev/null
@@ -1,17 +0,0 @@
---- sources/Makefile.orig Fri Nov 5 23:04:15 2004
-+++ sources/Makefile Wed Nov 24 14:52:32 2004
-@@ -1,11 +1,11 @@
- #Change the following to your needs
--CC = gcc
--#insert here flags, eg. optimizations
--CFLAGS = -Wall -Os -pedantic
-+CC ?= gcc
- LIBS =
- SRCS = main.c handlers.c mime.c log.c
- OBJS = main.o handlers.o mime.o log.o
- PROGRAM = pserv
-+
-+all : $(PROGRAM)
-
- $(PROGRAM) : $(OBJS)
- $(CC) -o $(PROGRAM) $(OBJS) $(LIBS)