ports/mail/popa3d/files/patch-ab
Chris D. Faulhaber dc2053998b 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>
2000-02-19 13:21:54 +00:00

24 lines
461 B
Text

--- 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