diff options
author | martti <martti@pkgsrc.org> | 2005-11-16 06:53:13 +0000 |
---|---|---|
committer | martti <martti@pkgsrc.org> | 2005-11-16 06:53:13 +0000 |
commit | a5e5c62cae99c9d59b808d27d26f24b4ceb222b3 (patch) | |
tree | 07636ae51642413c06e060758354d96303ff4ff8 /mail/postfix | |
parent | b3b0eb47515d0e74e5e4d0d85bfd92c8968b77d2 (diff) | |
download | pkgsrc-a5e5c62cae99c9d59b808d27d26f24b4ceb222b3.tar.gz |
Removed patch-ac as it was no longer needed (and in fact should not
be used) according to Wietse Venema.
PKGREVISION++
Diffstat (limited to 'mail/postfix')
-rw-r--r-- | mail/postfix/Makefile | 3 | ||||
-rw-r--r-- | mail/postfix/distinfo | 3 | ||||
-rw-r--r-- | mail/postfix/patches/patch-ac | 27 |
3 files changed, 3 insertions, 30 deletions
diff --git a/mail/postfix/Makefile b/mail/postfix/Makefile index 4497ca28dc7..76c2fd60f06 100644 --- a/mail/postfix/Makefile +++ b/mail/postfix/Makefile @@ -1,6 +1,7 @@ -# $NetBSD: Makefile,v 1.167 2005/08/23 11:48:48 rillig Exp $ +# $NetBSD: Makefile,v 1.168 2005/11/16 06:53:13 martti Exp $ DISTNAME= postfix-2.2.5 +PKGREVISION= 1 CATEGORIES= mail MASTER_SITES= ftp://ftp.porcupine.org/mirrors/postfix-release/official/ diff --git a/mail/postfix/distinfo b/mail/postfix/distinfo index 371bf98ba21..1fb0a601cdf 100644 --- a/mail/postfix/distinfo +++ b/mail/postfix/distinfo @@ -1,10 +1,9 @@ -$NetBSD: distinfo,v 1.92 2005/11/13 10:37:09 martti Exp $ +$NetBSD: distinfo,v 1.93 2005/11/16 06:53:13 martti Exp $ SHA1 (postfix/postfix-2.2.5.tar.gz) = 5e86340e6ccff5a9141c259a6b65f72b7396483d RMD160 (postfix/postfix-2.2.5.tar.gz) = 5508f9662319e655daf8ec8b70fb508f0bb15bb0 Size (postfix/postfix-2.2.5.tar.gz) = 2428594 bytes SHA1 (patch-aa) = 49d2bf6c7e5bbe5aac4d950ac69c7b6b32a98ef3 SHA1 (patch-ab) = c506a08b694f94ef4884fa97eec51e44c92812dd -SHA1 (patch-ac) = ffcd4f8b00c1cf01f050a0c943bfe61a1ec2361a SHA1 (patch-ag) = 550d1acab1c8bcd903a689207bd2c92444f42351 SHA1 (patch-ai) = d3ea006bafb5e9df869fbb2dec8c7f53b160c8e0 diff --git a/mail/postfix/patches/patch-ac b/mail/postfix/patches/patch-ac deleted file mode 100644 index af6fd559fb3..00000000000 --- a/mail/postfix/patches/patch-ac +++ /dev/null @@ -1,27 +0,0 @@ -$NetBSD: patch-ac,v 1.11 2005/03/22 10:43:50 cjs Exp $ - -See http://archives.neohapsis.com/archives/postfix/2004-08/1114.html -and the preceding thread. Fixes "smtp killed by signal 11" problems. - ---- src/util/vstream.c.old 2005-03-22 19:04:49.000000000 +0900 -+++ src/util/vstream.c 2005-03-22 19:05:26.000000000 +0900 -@@ -926,6 +926,10 @@ - * policies. Either this, or the vstream*open() routines would have to - * have a really ugly interface with lots of mostly-unused arguments (can - * you say VMS?). -+ * -+ * Initialize the I/O time (as documented) so that a time sensitive, "write -+ * before read" application does not force flush the first data written -+ * to a stream, potentially triggering NAGLE delays or other trouble. - */ - stream = (VSTREAM *) mymalloc(sizeof(*stream)); - stream->fd = fd; -@@ -939,7 +943,7 @@ - stream->timeout = 0; - stream->context = 0; - stream->jbuf = 0; -- stream->iotime = 0; -+ stream->iotime = time((time_t *) 0); /* as documented */; - return (stream); - } - |