diff options
author | steve <steve@FreeBSD.org> | 1999-12-27 22:13:06 +0000 |
---|---|---|
committer | steve <steve@FreeBSD.org> | 1999-12-27 22:13:06 +0000 |
commit | 13a586e5f3bafdd5af0063fde76d0a95601e9b5c (patch) | |
tree | 1ed46793da5caeb36d9c981fbcd3cb3dad17495b | |
parent | e477d613762553685ed706f4fac885cdafaedbfb (diff) | |
download | FreeBSD-ports-13a586e5f3bafdd5af0063fde76d0a95601e9b5c.zip FreeBSD-ports-13a586e5f3bafdd5af0063fde76d0a95601e9b5c.tar.gz |
A couple of more ports that now need to LIB_DEPEND on the gd port.
Noticed by: Ade Lovett <ade@lovett.com>
-rw-r--r-- | www/mod_php3/scripts/configure.php | 2 | ||||
-rw-r--r-- | www/mod_php4/scripts/configure.php | 2 | ||||
-rw-r--r-- | www/mod_php5/scripts/configure.php | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/www/mod_php3/scripts/configure.php b/www/mod_php3/scripts/configure.php index 9facb7b..14af329 100644 --- a/www/mod_php3/scripts/configure.php +++ b/www/mod_php3/scripts/configure.php @@ -56,7 +56,7 @@ while [ "$1" ]; do echo "APACHE_PERF_TUNING= YES" ;; \"GD\") - echo "BUILD_DEPENDS+= \${PREFIX}/lib/libgd.a:\${PORTSDIR}/graphics/gd" + echo "LIB_DEPENDS+= gd.0:\${PORTSDIR}/graphics/gd" echo "PHP_CONF_ARGS+= --with-gd=\${PREFIX}" GD=1 ;; diff --git a/www/mod_php4/scripts/configure.php b/www/mod_php4/scripts/configure.php index aed2339..70df22e 100644 --- a/www/mod_php4/scripts/configure.php +++ b/www/mod_php4/scripts/configure.php @@ -59,7 +59,7 @@ while [ "$1" ]; do echo "GD is DISABLED for now. Ignoring." > /dev/stderr ;; \"nothing\") - echo "BUILD_DEPENDS+= \${PREFIX}/lib/libgd.a:\${PORTSDIR}/graphics/gd" + echo "LIB_DEPENDS+= gd.0:\${PORTSDIR}/graphics/gd" echo "PHP_CONF_ARGS+= --with-gd=\${PREFIX}" GD=1 ;; diff --git a/www/mod_php5/scripts/configure.php b/www/mod_php5/scripts/configure.php index aed2339..70df22e 100644 --- a/www/mod_php5/scripts/configure.php +++ b/www/mod_php5/scripts/configure.php @@ -59,7 +59,7 @@ while [ "$1" ]; do echo "GD is DISABLED for now. Ignoring." > /dev/stderr ;; \"nothing\") - echo "BUILD_DEPENDS+= \${PREFIX}/lib/libgd.a:\${PORTSDIR}/graphics/gd" + echo "LIB_DEPENDS+= gd.0:\${PORTSDIR}/graphics/gd" echo "PHP_CONF_ARGS+= --with-gd=\${PREFIX}" GD=1 ;; |