summaryrefslogtreecommitdiff
path: root/mail/popa3d/patches
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2000-04-02 01:32:28 +0000
committerwiz <wiz@pkgsrc.org>2000-04-02 01:32:28 +0000
commit36b529f52736fa6e4fb5fb90398b85257f9ce7c5 (patch)
tree67dcf914e60a3637202663f8b4f80a7e88361359 /mail/popa3d/patches
parentf955b05eb495b7f57ab368a57d2338cf2b4eefba (diff)
downloadpkgsrc-36b529f52736fa6e4fb5fb90398b85257f9ce7c5.tar.gz
Initial import of popa3d, a small, performant, reliable, and secure
pop3 daemon.
Diffstat (limited to 'mail/popa3d/patches')
-rw-r--r--mail/popa3d/patches/patch-aa23
-rw-r--r--mail/popa3d/patches/patch-ab21
2 files changed, 44 insertions, 0 deletions
diff --git a/mail/popa3d/patches/patch-aa b/mail/popa3d/patches/patch-aa
new file mode 100644
index 00000000000..15dc42d380b
--- /dev/null
+++ b/mail/popa3d/patches/patch-aa
@@ -0,0 +1,23 @@
+$NetBSD: patch-aa,v 1.1.1.1 2000/04/02 01:32:28 wiz Exp $
+
+--- params.h.orig Tue Feb 1 07:16:24 2000
++++ params.h Sun Apr 2 00:29:09 2000
+@@ -62,7 +62,9 @@
+ * Do we have shadow passwords? (Not for *BSD.)
+ * Note: password aging is not supported.
+ */
++/* we do, but not this way
+ #define AUTH_SHADOW 1
++*/
+
+ /*
+ * A salt used to waste some CPU time on dummy crypt(3) calls and make
+@@ -81,7 +83,7 @@
+ * Your mail spool directory. Note: only local (non-NFS) mode 775 mail
+ * spools are currently supported.
+ */
+-#define MAIL_SPOOL_PATH "/var/spool/mail"
++#define MAIL_SPOOL_PATH "/var/mail"
+
+ /*
+ * How do we talk to syslogd? These should be fine for most systems.
diff --git a/mail/popa3d/patches/patch-ab b/mail/popa3d/patches/patch-ab
new file mode 100644
index 00000000000..90b9578ee1f
--- /dev/null
+++ b/mail/popa3d/patches/patch-ab
@@ -0,0 +1,21 @@
+$NetBSD: patch-ab,v 1.1.1.1 2000/04/02 01:32:28 wiz Exp $
+
+--- Makefile.orig Tue Feb 1 04:56:46 2000
++++ Makefile Sun Apr 2 00:29:25 2000
+@@ -1,9 +1,11 @@
+-CC = gcc
+-LD = gcc
+-RM = rm -f
+-CFLAGS = -c -Wall -O2 -fomit-frame-pointer
+-LDFLAGS = -s
++CC ?= gcc
++LD = ${CC}
++RM ?= rm -f
++CFLAGS += -c -Wall -O2 -fomit-frame-pointer
++LDFLAGS += -s -lcrypt
+ #LDFLAGS = -s -lcrypt
++
++all: popa3d
+
+ PROJ = popa3d
+ OBJS = md5/md5.o \