summaryrefslogtreecommitdiff
path: root/security
diff options
context:
space:
mode:
authorHajimu UMEMOTO <ume@FreeBSD.org>2004-05-07 10:13:37 +0000
committerHajimu UMEMOTO <ume@FreeBSD.org>2004-05-07 10:13:37 +0000
commitf3147bb4378d48af80c9c39faafa150e017b8db5 (patch)
tree4d70b6df89f85439750833ff595ac41da2500cd3 /security
parentChase Debian-package update. (diff)
use LOCALBASE for dependent packages instead of PREFIX.
Notes
Notes: svn path=/head/; revision=108606
Diffstat (limited to 'security')
-rw-r--r--security/cyrus-sasl2-saslauthd/Makefile4
-rw-r--r--security/cyrus-sasl2/Makefile6
2 files changed, 5 insertions, 5 deletions
diff --git a/security/cyrus-sasl2-saslauthd/Makefile b/security/cyrus-sasl2-saslauthd/Makefile
index 105314b15b35..c0749b346dd0 100644
--- a/security/cyrus-sasl2-saslauthd/Makefile
+++ b/security/cyrus-sasl2-saslauthd/Makefile
@@ -60,7 +60,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
.else
CONFIGURE_ARGS+=--with-dblib=ndbm
.endif
@@ -74,7 +74,7 @@ WANT_OPENLDAP_VER= ${WITH_OPENLDAP_VER}
BROKEN= "this port requires OpenLDAP >= 2.0"
.endif
USE_OPENLDAP= yes
-CONFIGURE_ARGS+=--with-ldap=${PREFIX}
+CONFIGURE_ARGS+=--with-ldap=${LOCALBASE}
.endif
.include <bsd.port.pre.mk>
diff --git a/security/cyrus-sasl2/Makefile b/security/cyrus-sasl2/Makefile
index 42cec3bda0f8..bbbf4950c666 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