diff options
author | vanilla <vanilla@FreeBSD.org> | 2000-11-12 11:56:30 +0800 |
---|---|---|
committer | vanilla <vanilla@FreeBSD.org> | 2000-11-12 11:56:30 +0800 |
commit | f38591aa4ba94dd41424572cd0cf120dacfa928f (patch) | |
tree | dcd6df9c66039cc296f7f1daee4993a2bbd1a356 /mail/solidpop3d/files | |
parent | beddbdfd5340c896ab3c7ad6fb9018d96d9405b7 (diff) | |
download | freebsd-ports-gnome-f38591aa4ba94dd41424572cd0cf120dacfa928f.tar.gz freebsd-ports-gnome-f38591aa4ba94dd41424572cd0cf120dacfa928f.tar.zst freebsd-ports-gnome-f38591aa4ba94dd41424572cd0cf120dacfa928f.zip |
Enable some feture by default.
Diffstat (limited to 'mail/solidpop3d/files')
-rw-r--r-- | mail/solidpop3d/files/patch-aa | 4 | ||||
-rw-r--r-- | mail/solidpop3d/files/patch-ab | 12 | ||||
-rw-r--r-- | mail/solidpop3d/files/patch-ac | 4 | ||||
-rw-r--r-- | mail/solidpop3d/files/patch-ad | 4 | ||||
-rw-r--r-- | mail/solidpop3d/files/patch-src_apop.c | 19 |
5 files changed, 34 insertions, 9 deletions
diff --git a/mail/solidpop3d/files/patch-aa b/mail/solidpop3d/files/patch-aa index 896cc9d611e7..5636763ad2f1 100644 --- a/mail/solidpop3d/files/patch-aa +++ b/mail/solidpop3d/files/patch-aa @@ -1,5 +1,5 @@ ---- src/const.h.orig Tue Apr 18 19:04:05 2000 -+++ src/const.h Fri Jun 9 14:12:51 2000 +--- src/const.h.orig Wed Apr 19 00:04:05 2000 ++++ src/const.h Tue Nov 7 08:59:40 2000 @@ -36,7 +36,7 @@ #define DEFWCCOUNT 5 diff --git a/mail/solidpop3d/files/patch-ab b/mail/solidpop3d/files/patch-ab index 66d81dfeb5cb..3b8faf4312ff 100644 --- a/mail/solidpop3d/files/patch-ab +++ b/mail/solidpop3d/files/patch-ab @@ -1,5 +1,5 @@ ---- src/Makefile.in.orig Fri Jun 9 14:16:13 2000 -+++ src/Makefile.in Fri Jun 9 14:16:17 2000 +--- src/Makefile.in.orig Fri Apr 21 04:55:44 2000 ++++ src/Makefile.in Tue Nov 7 09:18:04 2000 @@ -60,11 +60,11 @@ @@ -14,7 +14,13 @@ memops.c options.c response.c vsnprintf.c -@@ -95,7 +95,7 @@ +@@ -90,12 +90,12 @@ + + + DEFS = @DEFS@ -DDEFCONFIGFILENAME=\"$(sysconfdir)/spop3d.conf\" \ +--DBULLDIR=\"$(localstatedir)/bulletins/\" -I. -I$(srcdir) -I.. ++-DBULLDIR=\"/var/spool/spop3d\" -I. -I$(srcdir) -I.. + LDFLAGS = @LDFLAGS@ LIBS = @LIBS@ pop_auth_OBJECTS = pop_auth.o fdfgets.o vsnprintf.o spop3d_OBJECTS = authenticate.o cmds.o log.o fdfgets.o maildrop.o main.o \ diff --git a/mail/solidpop3d/files/patch-ac b/mail/solidpop3d/files/patch-ac index bf6a0e3cf7ef..5bb51164fc2d 100644 --- a/mail/solidpop3d/files/patch-ac +++ b/mail/solidpop3d/files/patch-ac @@ -1,5 +1,5 @@ ---- src/mailbox.c.orig Sat May 13 16:18:33 2000 -+++ src/mailbox.c Fri Jun 9 14:56:54 2000 +--- src/mailbox.c.orig Sat May 13 21:18:33 2000 ++++ src/mailbox.c Tue Nov 7 08:59:40 2000 @@ -45,6 +45,9 @@ #endif #endif diff --git a/mail/solidpop3d/files/patch-ad b/mail/solidpop3d/files/patch-ad index ac23c303e8f5..2816732e5e3d 100644 --- a/mail/solidpop3d/files/patch-ad +++ b/mail/solidpop3d/files/patch-ad @@ -1,5 +1,5 @@ ---- src/maildir.c.orig Sat May 13 16:18:35 2000 -+++ src/maildir.c Fri Jun 9 14:57:07 2000 +--- src/maildir.c.orig Sat May 13 21:18:35 2000 ++++ src/maildir.c Tue Nov 7 08:59:40 2000 @@ -59,6 +59,10 @@ #endif #endif diff --git a/mail/solidpop3d/files/patch-src_apop.c b/mail/solidpop3d/files/patch-src_apop.c new file mode 100644 index 000000000000..1e1a2b5fdc41 --- /dev/null +++ b/mail/solidpop3d/files/patch-src_apop.c @@ -0,0 +1,19 @@ +--- src/apop.c.orig Tue Nov 7 09:00:11 2000 ++++ src/apop.c Tue Nov 7 09:02:38 2000 +@@ -26,11 +26,15 @@ + #include <sys/stat.h> + #include <fcntl.h> + ++#define md5_finish_ctx(ctx, dig) MD5Final((unsigned char *)dig, ctx) ++#define md5_init_ctx(ctx) MD5Init(ctx) ++#define md5_process_bytes(buf, len, ctx) MD5Update (ctx, (unsigned char *)buf, len) ++ + extern char apop_secret[]; + + int apop_authenticate(char *username, char *apoptimestamp, char *udigest) { + char adigest[16], digest[16]; +- struct md5_ctx context; ++ MD5_CTX context; + int tmp; + + for (tmp = 0; tmp < 16; tmp++) { |