diff options
author | frueauf <frueauf@pkgsrc.org> | 2000-01-10 22:50:16 +0000 |
---|---|---|
committer | frueauf <frueauf@pkgsrc.org> | 2000-01-10 22:50:16 +0000 |
commit | 9360c0d5e67405c83cf0973b2e1eccffdf3b8da2 (patch) | |
tree | f4821b976775b5b1ba0bf3ff610d75998a260e49 /mail/fetchmail/patches/patch-ab | |
parent | d5ad0f8f272b7f1b49ce95469eeac63486814f67 (diff) | |
download | pkgsrc-9360c0d5e67405c83cf0973b2e1eccffdf3b8da2.tar.gz |
Update fetchmail to 5.2.3.
fetchmail-5.2.3 (Tue Jan 4 01:56:11 EST 2000), 18421 lines:
* Ken Estes's patch to check for unreachable UIDL file due to bad NFS mount.
* Jorge Godoy's replacement pt_BR.po and various minor translation fixes.
* Javier Kohen's replacement for es.po.
* Munechika SUMIKAWA's patch to make IPv6 version build when POP2 is enabled.
* Russian translation removed; it was badly garbled.
* Added Rick van Rein's fetchmaildistrib script to the contrib directory.
* Gunther Leber's cleanup patches.
* Note to translators: The bodies of the login-error and timeout-error
form letters have been changed in driver.c.
fetchmail-5.2.2 (Sun Dec 26 09:31:07 EST 1999), 18365 lines:
* Arrange for fetchmail to restart itself quietly when the rc file is touched.
* Improvements to IPv6 code from Jun-ichiro itojun Hagino <itojun@iijlab.net>.
* Drastic simplification of UIDL code, suggested by Ken Estes.
fetchmail-5.2.1 (Sun Dec 19 23:08:53 EST 1999), 18330 lines:
* Added FAQ item R10 on timeouts during messages.
* Fixed indentation problem in fetchmailconf.
* Federico Schwindt's patch to fix broken SSL configuration.
* Fixes to use fetchmail with IPv6 enabled on glibc without inet6-apps
installed; thanks to Arkadiusz Mis'kiewicz.
* Interpret IMAP PREAUTH tag correctly (from Joerg Dorchain).
* Upgraded to version 0.21 of smbutil.c. FAQ item S2 now documents
how to set a domain name.
Diffstat (limited to 'mail/fetchmail/patches/patch-ab')
-rw-r--r-- | mail/fetchmail/patches/patch-ab | 35 |
1 files changed, 4 insertions, 31 deletions
diff --git a/mail/fetchmail/patches/patch-ab b/mail/fetchmail/patches/patch-ab index 81bbbabc8f5..664a2270075 100644 --- a/mail/fetchmail/patches/patch-ab +++ b/mail/fetchmail/patches/patch-ab @@ -1,35 +1,8 @@ -$NetBSD: patch-ab,v 1.10 1999/10/01 10:49:52 agc Exp $ +$NetBSD: patch-ab,v 1.11 2000/01/10 22:50:17 frueauf Exp $ ---- Makefile.in.orig Wed Sep 22 06:27:27 1999 -+++ Makefile.in Fri Oct 1 11:45:47 1999 -@@ -82,9 +82,16 @@ - ETAGS = etags - CTAGS = ctags - -+OPSYS!= uname -s -+ -+.if ${OPSYS} == "SunOS" -+MD5OBJ= md5c.o -+MD5SRC= ${srcdir}/md5c.c -+.endif -+ - protobjs = rcfile_y.o rcfile_l.o socket.o getpass.o pop2.o pop3.o imap.o \ - etrn.o fetchmail.o env.o options.o daemon.o driver.o sink.o \ -- rfc822.o smtp.o xmalloc.o uid.o mxget.o md5c.o md5ify.o rpa.o \ -+ rfc822.o smtp.o xmalloc.o uid.o mxget.o ${MD5OBJ} md5ify.o rpa.o \ - interface.o netrc.o base64.o error.o unmime.o conf.o checkalias.o \ - smbdes.o smbencrypt.o smbmd4.o smbutil.o - -@@ -96,7 +103,7 @@ - $(srcdir)/options.c $(srcdir)/daemon.c $(srcdir)/driver.c \ - $(srcdir)/sink.c $(srcdir)/rfc822.c $(srcdir)/smtp.c \ - $(srcdir)/xmalloc.c $(srcdir)/uid.c $(srcdir)/mxget.c \ -- $(srcdir)/md5c.c $(srcdir)/md5ify.c $(srcdir)/rpa.c \ -+ ${MD5SRC} $(srcdir)/md5ify.c $(srcdir)/rpa.c \ - $(srcdir)/interface.c $(srcdir)/netrc.c $(srcdir)/base64.c \ - $(srcdir)/error.c $(srcdir)/unmime.c $(srcdir)/conf.c \ - $(srcdir)/checkalias.c $(srcdir)/smbdes.c $(srcdir)/smbencrypt.c \ -@@ -151,7 +158,7 @@ +--- Makefile.in.orig Tue Jan 4 07:58:45 2000 ++++ Makefile.in Mon Jan 10 21:34:27 2000 +@@ -152,7 +152,7 @@ @echo "Installing fetchmail binary..." $(INSTALL_PROGRAM) ./fetchmail $(bindir)/fetchmail @echo "Installing fetchmail configurator..." |