From dc2053998b27f3d38244ac8dc5fa7c57b1cfc132 Mon Sep 17 00:00:00 2001 From: "Chris D. Faulhaber" Date: Sat, 19 Feb 2000 13:21:54 +0000 Subject: 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 --- mail/popa3d/files/patch-ab | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 mail/popa3d/files/patch-ab (limited to 'mail/popa3d/files/patch-ab') 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 -- cgit v1.2.3