diff options
author | ume <ume@FreeBSD.org> | 2004-05-07 10:13:37 +0000 |
---|---|---|
committer | ume <ume@FreeBSD.org> | 2004-05-07 10:13:37 +0000 |
commit | 5f5fdbd2eb89466e744a80e3a5223e0fe36a0da1 (patch) | |
tree | 0264cf4105d3f60db56704b13718da416ecc65fc /security/cyrus-sasl2 | |
parent | dd0e81e94b9adcb2ed81b4564e7782599ae98c5b (diff) | |
download | FreeBSD-ports-5f5fdbd2eb89466e744a80e3a5223e0fe36a0da1.zip FreeBSD-ports-5f5fdbd2eb89466e744a80e3a5223e0fe36a0da1.tar.gz |
use LOCALBASE for dependent packages instead of PREFIX.
Diffstat (limited to 'security/cyrus-sasl2')
-rw-r--r-- | security/cyrus-sasl2/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/security/cyrus-sasl2/Makefile b/security/cyrus-sasl2/Makefile index 42cec3b..bbbf495 100644 --- a/security/cyrus-sasl2/Makefile +++ b/security/cyrus-sasl2/Makefile @@ -70,7 +70,7 @@ CONFIGURE_ARGS+=--with-bdb-incdir=${LOCALBASE}/include/db42 --with-bdb=db-4.2 .else BROKEN= "WITH_BDB_VER must be 3, 4, 41 or 42" .endif -CONFIGURE_ARGS+=--with-dblib=berkeley --with-bdb-libdir=${PREFIX}/lib +CONFIGURE_ARGS+=--with-dblib=berkeley --with-bdb-libdir=${LOCALBASE}/lib SASLDB_NAME= sasldb2 .else CONFIGURE_ARGS+=--with-dblib=ndbm @@ -85,7 +85,7 @@ WANT_MYSQL_VER= 323 .endif .if defined(WITH_MYSQL) USE_MYSQL= YES -CONFIGURE_ARGS+=--with-mysql=${PREFIX} +CONFIGURE_ARGS+=--with-mysql=${LOCALBASE} .else CONFIGURE_ARGS+=--without-mysql .endif @@ -93,7 +93,7 @@ CONFIGURE_ARGS+=--without-mysql .if defined(WITH_PGSQL) POSTGRESQL_PORT?= databases/postgresql-client LIB_DEPENDS+= pq.3:${PORTSDIR}/${POSTGRESQL_PORT} -CONFIGURE_ARGS+=--with-pgsql=${PREFIX} +CONFIGURE_ARGS+=--with-pgsql=${LOCALBASE} .else CONFIGURE_ARGS+=--without-pgsql .endif |