diff options
author | dirk <dirk@FreeBSD.org> | 2000-05-06 18:02:37 +0800 |
---|---|---|
committer | dirk <dirk@FreeBSD.org> | 2000-05-06 18:02:37 +0800 |
commit | 8aafebcf38ac7ba4584e291bdedddedff7f436d5 (patch) | |
tree | e1284c32607ddf1b0e806634a8157cfb372be66c /www | |
parent | 8b988ae0f53b4a63731181c98cc082543a73ab92 (diff) | |
download | freebsd-ports-gnome-8aafebcf38ac7ba4584e291bdedddedff7f436d5.tar.gz freebsd-ports-gnome-8aafebcf38ac7ba4584e291bdedddedff7f436d5.tar.zst freebsd-ports-gnome-8aafebcf38ac7ba4584e291bdedddedff7f436d5.zip |
BUILD_DEPENDS -> LIB_DEPENDS for OpenLDAP libraries: openldap build
shared libraries, now.
Diffstat (limited to 'www')
-rw-r--r-- | www/mod_php3/scripts/configure.php | 4 | ||||
-rw-r--r-- | www/mod_php4/scripts/configure.php | 4 | ||||
-rw-r--r-- | www/mod_php5/scripts/configure.php | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/www/mod_php3/scripts/configure.php b/www/mod_php3/scripts/configure.php index 388f83a7afd1..a323a432710e 100644 --- a/www/mod_php3/scripts/configure.php +++ b/www/mod_php3/scripts/configure.php @@ -136,8 +136,8 @@ while [ "$1" ]; do echo "PHP_CONF_ARGS+= --with-dbase" ;; \"OpenLDAP\") - echo "BUILD_DEPENDS+= \${PREFIX}/lib/libldap.a:\${PORTSDIR}/net/openldap" - echo "BUILD_DEPENDS+= \${PREFIX}/lib/liblber.a:\${PORTSDIR}/net/openldap" + echo "LIB_DEPENDS+= ldap.1:\${PORTSDIR}/net/openldap" + echo "LIB_DEPENDS+= lber.1:\${PORTSDIR}/net/openldap" echo "PHP_CONF_ARGS+= --with-ldap=\${PREFIX}" if [ -f /usr/lib/libkrb.a -a -f /usr/lib/libdes.a ]; then echo "CONFIGURE_ENV+= LIBS='-lkrb -ldes -L\${PREFIX}/lib'" diff --git a/www/mod_php4/scripts/configure.php b/www/mod_php4/scripts/configure.php index 0f98a3fb6509..ac54e5f9076c 100644 --- a/www/mod_php4/scripts/configure.php +++ b/www/mod_php4/scripts/configure.php @@ -120,8 +120,8 @@ while [ "$1" ]; do echo "PHP_CONF_ARGS+= --with-dbase" ;; \"OpenLDAP\") - echo "BUILD_DEPENDS+= \${PREFIX}/lib/libldap.a:\${PORTSDIR}/net/openldap" - echo "BUILD_DEPENDS+= \${PREFIX}/lib/liblber.a:\${PORTSDIR}/net/openldap" + echo "LIB_DEPENDS+= ldap.1:\${PORTSDIR}/net/openldap" + echo "LIB_DEPENDS+= lber.1:\${PORTSDIR}/net/openldap" echo "PHP_CONF_ARGS+= --with-ldap=\${PREFIX}" if [ -f /usr/lib/libkrb.a -a -f /usr/lib/libdes.a ]; then echo "CONFIGURE_ENV+= LIBS='-lkrb -ldes -L\${PREFIX}/lib'" diff --git a/www/mod_php5/scripts/configure.php b/www/mod_php5/scripts/configure.php index 0f98a3fb6509..ac54e5f9076c 100644 --- a/www/mod_php5/scripts/configure.php +++ b/www/mod_php5/scripts/configure.php @@ -120,8 +120,8 @@ while [ "$1" ]; do echo "PHP_CONF_ARGS+= --with-dbase" ;; \"OpenLDAP\") - echo "BUILD_DEPENDS+= \${PREFIX}/lib/libldap.a:\${PORTSDIR}/net/openldap" - echo "BUILD_DEPENDS+= \${PREFIX}/lib/liblber.a:\${PORTSDIR}/net/openldap" + echo "LIB_DEPENDS+= ldap.1:\${PORTSDIR}/net/openldap" + echo "LIB_DEPENDS+= lber.1:\${PORTSDIR}/net/openldap" echo "PHP_CONF_ARGS+= --with-ldap=\${PREFIX}" if [ -f /usr/lib/libkrb.a -a -f /usr/lib/libdes.a ]; then echo "CONFIGURE_ENV+= LIBS='-lkrb -ldes -L\${PREFIX}/lib'" |