diff options
author | Dirk Froemberg <dirk@FreeBSD.org> | 2000-02-27 21:14:28 +0000 |
---|---|---|
committer | Dirk Froemberg <dirk@FreeBSD.org> | 2000-02-27 21:14:28 +0000 |
commit | fad410c5b24f06dc6ab3e838652a8c906ac4ae5f (patch) | |
tree | f42a0250e2643386ea18b953238283387a596fc7 /www/mod_php5/scripts | |
parent | Upgrade to PHP-3.0.15. (diff) |
Sometimes graphics/gd depends on print/freetype sometimes not...
So split GD and FreeType into separate options again.
Notes
Notes:
svn path=/head/; revision=26380
Diffstat (limited to 'www/mod_php5/scripts')
-rw-r--r-- | www/mod_php5/scripts/configure.php | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/www/mod_php5/scripts/configure.php b/www/mod_php5/scripts/configure.php index f290e02821d6..c592418d17f2 100644 --- a/www/mod_php5/scripts/configure.php +++ b/www/mod_php5/scripts/configure.php @@ -15,7 +15,8 @@ fi Please select desired options:" -1 -1 14 \ tuning "Apache: performance tuning" OFF \ modssl "Apache: SSL support" OFF \ -GD "PHP: GD support & FreeType font rendering" OFF \ +GD "PHP: GD library support" OFF \ +FreeType "PHP: TrueType font rendering (implies GD)" OFF \ zlib "PHP: zlib library support" ON \ mcrypt "PHP: Encryption support" OFF \ mhash "PHP: Crypto-hashing support" OFF \ @@ -59,9 +60,15 @@ while [ "$1" ]; do ;; \"GD\") echo "LIB_DEPENDS+= gd.0:\${PORTSDIR}/graphics/gd" - echo "LIB_DEPENDS+= ttf.4:\${PORTSDIR}/print/freetype" echo "PHP_CONF_ARGS+= --with-gd=shared,\${PREFIX}" + GD=1 + ;; + \"FreeType\") + echo "LIB_DEPENDS+= ttf.4:\${PORTSDIR}/print/freetype" echo "PHP_CONF_ARGS+= --with-ttf=\${PREFIX}" + if [ -z "$GD" ]; then + set $* \"GD\" + fi ;; \"zlib\") echo "PHP_CONF_ARGS+= --with-zlib" |