summaryrefslogtreecommitdiff
path: root/mail
diff options
context:
space:
mode:
authorChris Piazza <cpiazza@FreeBSD.org>2000-02-25 21:59:04 +0000
committerChris Piazza <cpiazza@FreeBSD.org>2000-02-25 21:59:04 +0000
commit18dac5199ed9e2502aa8f289ac0f10eaa87f7a6e (patch)
tree9a15d829e3d396c173610a469e70c7ccd6f9699d /mail
parentUpdate to 5.3.0 (diff)
Update to 5.3.0
PR: 16952 Submitted by: Mario Sergio Fujikawa Ferreira <lioux@linf.unb.br>
Notes
Notes: svn path=/head/; revision=26286
Diffstat (limited to 'mail')
-rw-r--r--mail/fetchmail/files/patch-ah21
-rw-r--r--mail/fetchmail/files/patch-ai15
-rw-r--r--mail/fetchmail/files/patch-aj9
3 files changed, 45 insertions, 0 deletions
diff --git a/mail/fetchmail/files/patch-ah b/mail/fetchmail/files/patch-ah
new file mode 100644
index 000000000000..7d0d43eddeea
--- /dev/null
+++ b/mail/fetchmail/files/patch-ah
@@ -0,0 +1,21 @@
+diff -ruN ../fetchmail-5.3.0.OLD/Makefile.in ./Makefile.in
+--- ../fetchmail-5.3.0.OLD/Makefile.in Tue Feb 22 13:48:21 2000
++++ ./Makefile.in Wed Feb 23 23:40:25 2000
+@@ -70,6 +70,8 @@
+ INSTALL_PROGRAM = @INSTALL_PROGRAM@
+ # Program to install the man page.
+ INSTALL_DATA = @INSTALL_DATA@
++# Program to install scripts
++INSTALL_SCRIPT = @INSTALL_SCRIPT@
+ # Generic install program.
+ INSTALL = @INSTALL@
+
+@@ -152,7 +154,7 @@
+ @echo "Installing fetchmail binary..."
+ $(INSTALL_PROGRAM) ./fetchmail $(bindir)/fetchmail
+ @echo "Installing fetchmail configurator..."
+- $(INSTALL_PROGRAM) ${srcdir}/fetchmailconf $(bindir)/fetchmailconf
++ $(INSTALL_SCRIPT) ${srcdir}/fetchmailconf $(bindir)/fetchmailconf
+ @echo "Installing manual page..."
+ $(INSTALL_DATA) $(srcdir)/fetchmail.man $(mandir)/fetchmail.$(manext)
+ rm -f $(mandir)/fetchmailconf.$(manext)
diff --git a/mail/fetchmail/files/patch-ai b/mail/fetchmail/files/patch-ai
new file mode 100644
index 000000000000..0a2bf5543bc5
--- /dev/null
+++ b/mail/fetchmail/files/patch-ai
@@ -0,0 +1,15 @@
+diff -ruN ../fetchmail-5.3.0.OLD/conf.c ./conf.c
+--- ../fetchmail-5.3.0.OLD/conf.c Fri Feb 18 01:31:22 2000
++++ ./conf.c Wed Feb 23 23:48:58 2000
+@@ -249,9 +249,10 @@
+ stringdump("via", ctl->server.via);
+ stringdump("protocol",
+ using_kpop ? "KPOP" : showproto(ctl->server.protocol));
+- numdump("port", ctl->server.port);
+ #if INET6_ENABLE
+ stringdump("service", ctl->server.service);
++#else
++ numdump("port", ctl->server.port);
+ #endif
+ numdump("timeout", ctl->server.timeout);
+ numdump("interval", ctl->server.interval);
diff --git a/mail/fetchmail/files/patch-aj b/mail/fetchmail/files/patch-aj
new file mode 100644
index 000000000000..d6e615c2645e
--- /dev/null
+++ b/mail/fetchmail/files/patch-aj
@@ -0,0 +1,9 @@
+diff -ruN ../fetchmail-5.3.0.OLD/md5.h ./md5.h
+--- ../fetchmail-5.3.0.OLD/md5.h Sun Dec 19 15:18:14 1999
++++ ./md5.h Wed Feb 23 23:46:56 2000
+@@ -1,4 +1,5 @@
+ #ifndef _MD5_H_
+ #define _MD5_H_
++#include <sys/types.h>
+ #include <sys/md5.h>
+ #endif /* _MD5_H_ */