Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 07 Feb 2005 12:05:01 -0200
From:      Marcus Grando <marcus@corp.grupos.com.br>
To:        Glenn Sieb <ges+lists@wingfoot.org>, freebsd-ports@lists.freebsd.org
Subject:   Re: mail/postfix problem in make index...
Message-ID:  <4207758D.1070106@corp.grupos.com.br>
In-Reply-To: <4206F28E.4080503@wingfoot.org>
References:  <4206F28E.4080503@wingfoot.org>

next in thread | previous in thread | raw e-mail | index | archive | help
This is a multi-part message in MIME format.
--------------010802080401030602040603
Content-Type: text/plain; charset=ISO-8859-1; format=flowed
Content-Transfer-Encoding: 7bit

Please, test attached patch.

Ragards

Glenn Sieb wrote:
> mail/postfix/Makefile.inc calls for older databases/postgresql7 instead 
> of the newer databases/postgresql74-client which causes make index to fail.
> 
> Just to let people know..
> 
> Best,
> Glenn
> 

-- 
Marcus Grando
Grupos Internet S/A
marcus(at)corp.grupos.com.br

--------------010802080401030602040603
Content-Type: text/plain;
 name="postfix-pgsql.patch"
Content-Transfer-Encoding: 7bit
Content-Disposition: inline;
 filename="postfix-pgsql.patch"

diff -ruN postfix.old/scripts/configure.postfix postfix/scripts/configure.postfix
--- postfix.old/scripts/configure.postfix	Sat Nov 27 00:15:57 2004
+++ postfix/scripts/configure.postfix	Mon Feb  7 11:59:40 2005
@@ -35,7 +35,6 @@
 MySQL		"MySQL map lookups (choose version with WITH_MYSQL_VER)" "$status_MySQL" \
 PgSQL		"PostgreSQL v7.4 map lookups" "$status_PgSQL" \
 PgSQL73		"PostgreSQL v7.3 map lookups" "$status_PgSQL73" \
-PgSQL72		"PostgreSQL v7.2 map lookups" "$status_PgSQL72" \
 OpenLDAP	"OpenLDAP map lookups (choose ver. with WITH_OPENLDAP_VER)" "$status_OpenLDAP" \
 VDA		"VDA (Virtual Delivery Agent)" "$status_VDA" \
 Test		"SMTP/LMTP test server and generator" "$status_Test" \
@@ -176,22 +175,15 @@
 			echo "MYSQL_SUFFIX=	+mysql"
 			;;
 		PgSQL)
-			echo "POSTGRESQL_PORT?=	databases/postgresql7"
+			echo "POSTGRESQL_PORT?=	databases/postgresql74-client"
 			echo "LIB_DEPENDS+=	pq.3:\${PORTSDIR}/\${POSTGRESQL_PORT}"
 			echo "POSTFIX_CCARGS+=	-DHAS_PGSQL -I\${LOCALBASE}/include  -I\${LOCALBASE}/pgsql/include"
 			echo "POSTFIX_AUXLIBS+=	-L\${LOCALBASE}/lib -L\${LOCALBASE}/pgsql/lib -lpq -lcrypt"
 			echo "PGSQL_SUFFIX=	+pgsql"
 			;;
 		PgSQL73)
-			echo "POSTGRESQL_PORT?=	databases/postgresql73"
+			echo "POSTGRESQL_PORT?=	databases/postgresql73-client"
 			echo "LIB_DEPENDS+=	pq.3:\${PORTSDIR}/\${POSTGRESQL_PORT}"
-			echo "POSTFIX_CCARGS+=	-DHAS_PGSQL -I\${LOCALBASE}/include  -I\${LOCALBASE}/pgsql/include"
-			echo "POSTFIX_AUXLIBS+=	-L\${LOCALBASE}/lib -L\${LOCALBASE}/pgsql/lib -lpq -lcrypt"
-			echo "PGSQL_SUFFIX=	+pgsql"
-			;;
-		PgSQL72)
-			echo "POSTGRESQL_PORT?=	databases/postgresql72"
-			echo "LIB_DEPENDS+=	pq.2:\${PORTSDIR}/\${POSTGRESQL_PORT}"
 			echo "POSTFIX_CCARGS+=	-DHAS_PGSQL -I\${LOCALBASE}/include  -I\${LOCALBASE}/pgsql/include"
 			echo "POSTFIX_AUXLIBS+=	-L\${LOCALBASE}/lib -L\${LOCALBASE}/pgsql/lib -lpq -lcrypt"
 			echo "PGSQL_SUFFIX=	+pgsql"

--------------010802080401030602040603--



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?4207758D.1070106>