View | Details | Raw Unified | Return to bug 145097
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.6.5
9
PORTVERSION=	2.6.6
10
PORTEPOCH=	1
10
PORTEPOCH=	1
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.6.5.tar.gz) = 6b954cfb3eb6141dac1e773281211717
1
MD5 (postfix/postfix-2.6.6.tar.gz) = 2032102731aee48b4d1541962ecc0438
2
SHA256 (postfix/postfix-2.6.5.tar.gz) = 5b5c8d3c98d7dffece1d30ed4dc1cfbd3220842fd626a324ce038d7d795e4102
2
SHA256 (postfix/postfix-2.6.6.tar.gz) = 03b08a4a93065ffd07b2abd1e461575215cc8e0ba90595145c0e2e86ea3f0a36
3
SIZE (postfix/postfix-2.6.5.tar.gz) = 3325444
3
SIZE (postfix/postfix-2.6.6.tar.gz) = 3327136
4
MD5 (postfix/postfix-2.6.5-vda-ng.patch.gz) = 43e54d0a1a016b90d15a1bd231e6fa38
4
MD5 (postfix/postfix-2.6.5-vda-ng.patch.gz) = 43e54d0a1a016b90d15a1bd231e6fa38
5
SHA256 (postfix/postfix-2.6.5-vda-ng.patch.gz) = e1c04e9d268dc84832334997e1f593af9877dbd5030708280427a0dc4452e797
5
SHA256 (postfix/postfix-2.6.5-vda-ng.patch.gz) = e1c04e9d268dc84832334997e1f593af9877dbd5030708280427a0dc4452e797
6
SIZE (postfix/postfix-2.6.5-vda-ng.patch.gz) = 12435
6
SIZE (postfix/postfix-2.6.5-vda-ng.patch.gz) = 12435
(-)files/patch-makedefs (-6 / +4 lines)
Lines 1-11 Link Here
1
--- makedefs.orig	2009-07-17 18:21:25.000000000 -0400
1
--- makedefs.orig	2010-03-27 22:45:57.000000000 -0400
2
+++ makedefs	2009-07-17 18:23:12.000000000 -0400
2
+++ makedefs	2010-03-27 22:46:29.000000000 -0400
3
@@ -144,6 +144,10 @@
3
@@ -146,6 +146,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-05-11 03:45:27.000000000 +0300
1
--- src/util/sys_defs.h.orig	2010-03-27 22:48:21.000000000 -0400
2
+++ src/util/sys_defs.h	2009-07-22 21:26:44.208909929 +0300
2
+++ src/util/sys_defs.h	2010-03-27 22:49:57.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 145097