summaryrefslogtreecommitdiff
path: root/mail/popa3d/files/patch-ab
diff options
context:
space:
mode:
authorChris D. Faulhaber <jedgar@FreeBSD.org>2000-02-19 13:21:54 +0000
committerChris D. Faulhaber <jedgar@FreeBSD.org>2000-02-19 13:21:54 +0000
commitdc2053998b27f3d38244ac8dc5fa7c57b1cfc132 (patch)
treec413f5801a898937231b46ac6624c9796e465a5a /mail/popa3d/files/patch-ab
parentAdd RESTRICTED. (diff)
popa3d is a POP3 server with the following goals:
1. Security (to the extent that is possible with POP3 at all, of course). 2. Reliability (again, as limited by the mailbox format and the protocol). 3. RFC compliance (slightly relaxed to work with real-world POP3 clients). 4. Performance (limited by the more important goals, above). PR: 16652 Submitted by: Sergey Samoyloff <techline@hotmail.ru>
Notes
Notes: svn path=/head/; revision=26003
Diffstat (limited to 'mail/popa3d/files/patch-ab')
-rw-r--r--mail/popa3d/files/patch-ab24
1 files changed, 24 insertions, 0 deletions
diff --git a/mail/popa3d/files/patch-ab b/mail/popa3d/files/patch-ab
new file mode 100644
index 000000000000..fa30f9236e90
--- /dev/null
+++ b/mail/popa3d/files/patch-ab
@@ -0,0 +1,24 @@
+--- Makefile.orig Tue Feb 1 06:56:46 2000
++++ Makefile Sun Feb 6 13:31:49 2000
+@@ -1,9 +1,9 @@
+-CC = gcc
++CC?= gcc
+ LD = gcc
+ RM = rm -f
+ CFLAGS = -c -Wall -O2 -fomit-frame-pointer
+-LDFLAGS = -s
+-#LDFLAGS = -s -lcrypt
++#LDFLAGS = -s
++LDFLAGS = -s -lcrypt
+
+ PROJ = popa3d
+ OBJS = md5/md5.o \
+@@ -12,7 +12,7 @@
+ protocol.o database.o mailbox.o \
+ misc.o
+
+-popa3d: $(OBJS)
++all: $(OBJS)
+ $(LD) $(LDFLAGS) $(OBJS) -o popa3d
+
+ md5/md5.o: md5/md5.c md5/md5.h