diff options
author | cpiazza <cpiazza@FreeBSD.org> | 2000-02-26 05:59:04 +0800 |
---|---|---|
committer | cpiazza <cpiazza@FreeBSD.org> | 2000-02-26 05:59:04 +0800 |
commit | 6b76083ad49a6a909feb69c00ba80c601034b0b7 (patch) | |
tree | 3ded6922176f72b7c9beb0c91ac1968d58371eae | |
parent | 0690065b10b1b5c137f3019a4937dec14856144e (diff) | |
download | freebsd-ports-gnome-6b76083ad49a6a909feb69c00ba80c601034b0b7.tar.gz freebsd-ports-gnome-6b76083ad49a6a909feb69c00ba80c601034b0b7.tar.zst freebsd-ports-gnome-6b76083ad49a6a909feb69c00ba80c601034b0b7.zip |
Update to 5.3.0
PR: 16952
Submitted by: Mario Sergio Fujikawa Ferreira <lioux@linf.unb.br>
-rw-r--r-- | mail/fetchmail/files/patch-ah | 21 | ||||
-rw-r--r-- | mail/fetchmail/files/patch-ai | 15 | ||||
-rw-r--r-- | mail/fetchmail/files/patch-aj | 9 |
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_ */ |