View | Details | Raw Unified | Return to bug 145096
Collapse All | Expand All

(-)Makefile (-1 / +1 lines)
Lines 6-12 Link Here
6
#
6
#
7
7
8
PORTNAME=	postfix
8
PORTNAME=	postfix
9
PORTVERSION=	2.5.9
9
PORTVERSION=	2.5.10
10
PORTEPOCH=	2
10
PORTEPOCH=	2
11
CATEGORIES=	mail ipv6
11
CATEGORIES=	mail ipv6
12
MASTER_SITES=	ftp://ftp.porcupine.org/mirrors/postfix-release/official/ \
12
MASTER_SITES=	ftp://ftp.porcupine.org/mirrors/postfix-release/official/ \
(-)distinfo (-3 / +3 lines)
Lines 1-6 Link Here
1
MD5 (postfix/postfix-2.5.9.tar.gz) = efede346cebab9075bc91fffc5b5bd13
1
MD5 (postfix/postfix-2.5.10.tar.gz) = 231e3242df5f41601d88527917de05fd
2
SHA256 (postfix/postfix-2.5.9.tar.gz) = afabcd385d0505a772b7ea72d1087e83b84ebcb554c08f130771c0e761a84f99
2
SHA256 (postfix/postfix-2.5.10.tar.gz) = d9c746dbc2b8255a445b4527e1d882650a4d571678652f46db2b965329946c5a
3
SIZE (postfix/postfix-2.5.9.tar.gz) = 3160370
3
SIZE (postfix/postfix-2.5.10.tar.gz) = 3161540
4
MD5 (postfix/postfix-2.5.6-vda-ng.patch.gz) = 83e483795c616abb27fdee5d9886019c
4
MD5 (postfix/postfix-2.5.6-vda-ng.patch.gz) = 83e483795c616abb27fdee5d9886019c
5
SHA256 (postfix/postfix-2.5.6-vda-ng.patch.gz) = c4e4ff3da5b6bfa2648dc41bbf7ee56c1ba2f62e2c77a7885bc8044a1131f531
5
SHA256 (postfix/postfix-2.5.6-vda-ng.patch.gz) = c4e4ff3da5b6bfa2648dc41bbf7ee56c1ba2f62e2c77a7885bc8044a1131f531
6
SIZE (postfix/postfix-2.5.6-vda-ng.patch.gz) = 12388
6
SIZE (postfix/postfix-2.5.6-vda-ng.patch.gz) = 12388
(-)files/patch-makedefs (-6 / +4 lines)
Lines 1-11 Link Here
1
--- makedefs.orig	2009-09-27 22:18:56.000000000 -0400
1
--- makedefs.orig	2010-03-27 23:06:06.000000000 -0400
2
+++ makedefs	2009-09-27 22:20:51.000000000 -0400
2
+++ makedefs	2010-03-27 23:06:34.000000000 -0400
3
@@ -132,6 +132,10 @@
3
@@ -134,6 +134,8 @@
4
 		;;
4
 		;;
5
   FreeBSD.7*)	SYSTYPE=FREEBSD7
5
   FreeBSD.8*)	SYSTYPE=FREEBSD8
6
 		;;
6
 		;;
7
+  FreeBSD.8*)	SYSTYPE=FREEBSD8
8
+		;;
9
+  FreeBSD.9*)	SYSTYPE=FREEBSD9
7
+  FreeBSD.9*)	SYSTYPE=FREEBSD9
10
+		;;
8
+		;;
11
   OpenBSD.2*)	SYSTYPE=OPENBSD2
9
   OpenBSD.2*)	SYSTYPE=OPENBSD2
(-)files/patch-src::util::sys_defs.h (-9 / +8 lines)
Lines 1-22 Link Here
1
--- src/util/sys_defs.h.orig	2009-09-27 22:22:10.000000000 -0400
1
--- src/util/sys_defs.h.orig	2010-03-27 23:07:02.000000000 -0400
2
+++ src/util/sys_defs.h	2009-09-27 22:24:08.000000000 -0400
2
+++ src/util/sys_defs.h	2010-03-27 23:08:50.000000000 -0400
3
@@ -25,6 +25,7 @@
3
@@ -25,7 +25,7 @@
4
   */
4
   */
5
 #if defined(FREEBSD2) || defined(FREEBSD3) || defined(FREEBSD4) \
5
 #if defined(FREEBSD2) || defined(FREEBSD3) || defined(FREEBSD4) \
6
     || defined(FREEBSD5) || defined(FREEBSD6) || defined(FREEBSD7) \
6
     || defined(FREEBSD5) || defined(FREEBSD6) || defined(FREEBSD7) \
7
-    || defined(FREEBSD8) \
7
+    || defined(FREEBSD8) || defined(FREEBSD9) \
8
+    || defined(FREEBSD8) || defined(FREEBSD9) \
8
     || defined(BSDI2) || defined(BSDI3) || defined(BSDI4) \
9
     || defined(BSDI2) || defined(BSDI3) || defined(BSDI4) \
9
     || defined(OPENBSD2) || defined(OPENBSD3) || defined(OPENBSD4) \
10
     || defined(OPENBSD2) || defined(OPENBSD3) || defined(OPENBSD4) \
10
     || defined(NETBSD1) || defined(NETBSD2) || defined(NETBSD3) \
11
     || defined(NETBSD1) || defined(NETBSD2) || defined(NETBSD3) \
11
@@ -110,6 +111,11 @@
12
@@ -111,7 +111,8 @@
12
 #define HAS_DUPLEX_PIPE			/* 4.1 breaks with kqueue(2) */
13
 #define HAS_DUPLEX_PIPE			/* 4.1 breaks with kqueue(2) */
13
 #endif
14
 #endif
14
 
15
 
16
-#if __FreeBSD_version >= 800098		/* commit: r194262 */
15
+#if (__FreeBSD_version >= 702104 && __FreeBSD_version <= 800000) \
17
+#if (__FreeBSD_version >= 702104 && __FreeBSD_version <= 800000) \
16
+    || __FreeBSD_version >= 800100
18
+    || __FreeBSD_version >= 800100
17
+#define HAS_CLOSEFROM
19
 #define HAS_CLOSEFROM
18
+#endif
20
 #endif
19
+
20
 /* OpenBSD version is year+month */
21
 
21
 
22
 #if OpenBSD >= 199805			/* XXX */

Return to bug 145096