diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2005-05-31 08:11:30 +0000 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2005-05-31 08:11:30 +0000 |
commit | 4d2b5b5ad24a6d8ab667029a29f324e6f25de17a (patch) | |
tree | 14516a7ef588d204ae7907ad720458edd4a71b76 /mail/postfix1 | |
parent | 80c5619581a66130d65237433d00f07b44a6dcc0 (diff) |
- Remove bogus optional dependencies on databases/postgresql7
Inspired by: "I wonder where people are taking this code snippet from."
Notes
Notes:
svn path=/head/; revision=136498
Diffstat (limited to 'mail/postfix1')
-rw-r--r-- | mail/postfix1/scripts/configure.postfix | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/mail/postfix1/scripts/configure.postfix b/mail/postfix1/scripts/configure.postfix index a4df9aca1a88..6aa0216b011c 100644 --- a/mail/postfix1/scripts/configure.postfix +++ b/mail/postfix1/scripts/configure.postfix @@ -1,5 +1,5 @@ #!/bin/sh -# $FreeBSD: /tmp/pcvs/ports/mail/postfix1/scripts/Attic/configure.postfix,v 1.38 2003-07-31 12:19:53 nectar Exp $ +# $FreeBSD: /tmp/pcvs/ports/mail/postfix1/scripts/Attic/configure.postfix,v 1.39 2005-05-31 08:11:30 pav Exp $ if [ -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc ]; then exit @@ -109,8 +109,7 @@ for i; do echo "MYSQL_SUFFIX= +mysql" ;; PgSQL) - echo "POSTGRESQL_PORT?= databases/postgresql7" - echo "LIB_DEPENDS+= pq.3:\${PORTSDIR}/\${POSTGRESQL_PORT}" + echo "USE_PGSQL= yes" 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" |