diff options
author | dirk <dirk@FreeBSD.org> | 2000-01-03 01:17:29 +0800 |
---|---|---|
committer | dirk <dirk@FreeBSD.org> | 2000-01-03 01:17:29 +0800 |
commit | 4dd0d6cb085098d1ed27f03bccb7321105975d90 (patch) | |
tree | 00c7ae55e8819303a96ce7532eb83f0a45f49924 /www/mod_php3/scripts | |
parent | 3aaeee764299c4b205ca4e985a55fd515380bca0 (diff) | |
download | freebsd-ports-graphics-4dd0d6cb085098d1ed27f03bccb7321105975d90.tar.gz freebsd-ports-graphics-4dd0d6cb085098d1ed27f03bccb7321105975d90.tar.zst freebsd-ports-graphics-4dd0d6cb085098d1ed27f03bccb7321105975d90.zip |
- Use CC and CFLAGS for first configure run.
- gd depends on freetype, now. So join gd and freetype support in
one option.
Diffstat (limited to 'www/mod_php3/scripts')
-rw-r--r-- | www/mod_php3/scripts/configure.php | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/www/mod_php3/scripts/configure.php b/www/mod_php3/scripts/configure.php index dabda8c17ea..3a816191714 100644 --- a/www/mod_php3/scripts/configure.php +++ b/www/mod_php3/scripts/configure.php @@ -15,8 +15,7 @@ fi Please select desired options:" -1 -1 14 \ tuning "Apache: performance tuning" OFF \ modssl "Apache: SSL support" OFF \ -GD "PHP: GD library support" OFF \ -FreeType "PHP: TrueType font rendering (implies GD)" OFF \ +GD "PHP: GD support & FreeType font rendering" OFF \ zlib "PHP: zlib library support" ON \ mcrypt "PHP: Encryption support" OFF \ mhash "PHP: Crypto-hashing support" OFF \ @@ -58,15 +57,9 @@ while [ "$1" ]; do ;; \"GD\") echo "LIB_DEPENDS+= gd.0:\${PORTSDIR}/graphics/gd" - echo "PHP_CONF_ARGS+= --with-gd=\${PREFIX}" - GD=1 - ;; - \"FreeType\") echo "LIB_DEPENDS+= ttf.4:\${PORTSDIR}/print/freetype" + echo "PHP_CONF_ARGS+= --with-gd=\${PREFIX}" echo "PHP_CONF_ARGS+= --with-ttf=\${PREFIX}" - if [ -z "$GD" ]; then - set $* \"GD\" - fi ;; \"zlib\") echo "PHP_CONF_ARGS+= --with-zlib" |