summaryrefslogtreecommitdiff
path: root/security/cyrus-sasl/scripts/configure.sasl
diff options
context:
space:
mode:
authorJames E. Housley <jeh@FreeBSD.org>2000-11-01 11:59:18 +0000
committerJames E. Housley <jeh@FreeBSD.org>2000-11-01 11:59:18 +0000
commita4303046f0e8d22ddd0ff6c9c85c603020e84615 (patch)
tree1adf287eac60006e7c83e37e47aecb40914ee384 /security/cyrus-sasl/scripts/configure.sasl
parentDistfile has been updated w/o bumping version number, so update distinfo and (diff)
- Change /var/pwcheck permissions so Postfix can use pwcheck for SASL Authentication.
- Update MySQL & LDAP Authentication Methods - Correct bento warning for extra file (Sendmail.conf). - Correct mysql detection code in configure.sasl, and use LIB_DEPENDS for db3. PR: 22462 Submitted by: Scot W. Hetzel <hetzels@westbend.net> MAINTAINER
Notes
Notes: svn path=/head/; revision=34538
Diffstat (limited to '')
-rw-r--r--security/cyrus-sasl/scripts/configure.sasl9
1 files changed, 3 insertions, 6 deletions
diff --git a/security/cyrus-sasl/scripts/configure.sasl b/security/cyrus-sasl/scripts/configure.sasl
index 540ab1afa5e5..40e33f3c69a3 100644
--- a/security/cyrus-sasl/scripts/configure.sasl
+++ b/security/cyrus-sasl/scripts/configure.sasl
@@ -20,12 +20,12 @@ if [ "${BATCH}" ]; then
fi
else
- if [ "x${ENABLE_DB3}" = "xYES" -o -f ${PREFIX}/lib/libdb3.so ] ; then
+ if [ "x${ENABLE_DB3}" = "xYES" -o -f ${PREFIX}/lib/libdb3.so.1 ] ; then
SET_DB3="ON"
else
SET_DB3="OFF"
fi
- if [ "x${ENABLE_MYSQL}" = "xYES" -o -f ${PREFIX}/lib/libmysqlclient.so ] ; then
+ if [ "x${ENABLE_MYSQL}" = "xYES" -o -f ${PREFIX}/lib/mysql/libmysqlclient.so ] ; then
SET_MYSQL="ON"
else
SET_MYSQL="OFF"
@@ -71,10 +71,7 @@ echo "PREFIX= ${PREFIX}"
while [ "$1" ]; do
case $1 in
\"DB3\")
- #Can't use LIB_DEPENDS - no libdb3.so.1 in db3 port
- #echo "LIB_DEPENDS+= db3.1:\${PORTSDIR}/databases/db3"
- echo "BUILD_DEPENDS+= \${LOCALBASE}/lib/libdb3.1.so:\${PORTSDIR}/databases/db3"
- echo "RUN_DEPENDS+= \${LOCALBASE}/lib/libdb3.1.so:\${PORTSDIR}/databases/db3"
+ echo "LIB_DEPENDS+= db3.1:\${PORTSDIR}/databases/db3"
echo "CONFIGURE_ARGS+=--with-dblib=berkeley"
;;
\"MySQL\")