summaryrefslogtreecommitdiff
path: root/mail/postfix-current
diff options
context:
space:
mode:
authorabs <abs@pkgsrc.org>2005-09-06 08:10:57 +0000
committerabs <abs@pkgsrc.org>2005-09-06 08:10:57 +0000
commit7487856bc8e2f45be7fbc43b539e15dafdf7fd27 (patch)
tree93bf2742fc4e1bf90527c6e25c8e73ae1da1c960 /mail/postfix-current
parent193dddddcdfb99536b1854801019f2a12046f27d (diff)
downloadpkgsrc-7487856bc8e2f45be7fbc43b539e15dafdf7fd27.tar.gz
Fix NetBSD statvfs check to be >= 299000900 not >= 200040000
No pkgrevision bumps needed.
Diffstat (limited to 'mail/postfix-current')
-rw-r--r--mail/postfix-current/distinfo4
-rw-r--r--mail/postfix-current/patches/patch-ag4
2 files changed, 4 insertions, 4 deletions
diff --git a/mail/postfix-current/distinfo b/mail/postfix-current/distinfo
index 441923916dc..00a5a44e429 100644
--- a/mail/postfix-current/distinfo
+++ b/mail/postfix-current/distinfo
@@ -1,8 +1,8 @@
-$NetBSD: distinfo,v 1.12 2005/08/23 02:31:44 reed Exp $
+$NetBSD: distinfo,v 1.13 2005/09/06 08:10:58 abs Exp $
SHA1 (postfix/postfix-2.3-20050726.tar.gz) = 7b5c10f01a003b4764c6e4a672ae866ca53e793c
RMD160 (postfix/postfix-2.3-20050726.tar.gz) = 4eecae72057e23c97f05280485ad2ce9d1df7973
Size (postfix/postfix-2.2-20040628.tar.gz) = 2504873 bytes
SHA1 (patch-aa) = 279b54f19289b56a423214716386c5aab79a57d5
-SHA1 (patch-ag) = 11af49528b1f1db2f3904dee5130a06ce9711664
+SHA1 (patch-ag) = 806a75127cb596059ca68664ad7ba070e96cc589
SHA1 (patch-ai) = 14fdae53a54422c9714442df2bc7c308393e0dfa
diff --git a/mail/postfix-current/patches/patch-ag b/mail/postfix-current/patches/patch-ag
index 6e77ec87352..da64dc75032 100644
--- a/mail/postfix-current/patches/patch-ag
+++ b/mail/postfix-current/patches/patch-ag
@@ -1,4 +1,4 @@
-$NetBSD: patch-ag,v 1.7 2005/08/23 02:31:44 reed Exp $
+$NetBSD: patch-ag,v 1.8 2005/09/06 08:10:58 abs Exp $
--- src/util/sys_defs.h.orig 2005-07-14 14:28:33.000000000 -0700
+++ src/util/sys_defs.h 2005-08-22 19:05:24.000000000 -0700
@@ -37,7 +37,7 @@ $NetBSD: patch-ag,v 1.7 2005/08/23 02:31:44 reed Exp $
#define ALIAS_DB_MAP "hash:/etc/aliases"
#define GETTIMEOFDAY(t) gettimeofday(t,(struct timezone *) 0)
#define ROOT_PATH "/bin:/usr/bin:/sbin:/usr/sbin"
-+#if (defined(__NetBSD__) && __NetBSD_Version__ >= 200040000) /* NetBSD 2.0D */
++#if (defined(__NetBSD__) && __NetBSD_Version__ >= 299000900) /* NetBSD 2.99.9 */
+#define USE_STATVFS
+#define STATVFS_IN_SYS_STATVFS_H
+#else