diff options
author | dirk <dirk@FreeBSD.org> | 1999-08-31 02:07:48 +0800 |
---|---|---|
committer | dirk <dirk@FreeBSD.org> | 1999-08-31 02:07:48 +0800 |
commit | 33664f6ff253443587ed8fa110f8cc421baa5f24 (patch) | |
tree | 176cda77cf2d6cc58dd7dfe4cf8b04c12d51a00a /www/mod_php4 | |
parent | 8c199515fda2d15a3f0927814eaba88e9effcf35 (diff) | |
download | freebsd-ports-gnome-33664f6ff253443587ed8fa110f8cc421baa5f24.tar.gz freebsd-ports-gnome-33664f6ff253443587ed8fa110f8cc421baa5f24.tar.zst freebsd-ports-gnome-33664f6ff253443587ed8fa110f8cc421baa5f24.zip |
Disable gd and freetype support.
PR: ports/13454
Diffstat (limited to 'www/mod_php4')
-rw-r--r-- | www/mod_php4/scripts/configure.php | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/www/mod_php4/scripts/configure.php b/www/mod_php4/scripts/configure.php index f8413f6948a6..87702420f57d 100644 --- a/www/mod_php4/scripts/configure.php +++ b/www/mod_php4/scripts/configure.php @@ -56,11 +56,17 @@ while [ "$1" ]; do echo "APACHE_PERF_TUNING= YES" ;; \"GD\") + echo "GD is DISABLED for now. Ignoring." > /dev/stderr + ;; + \"nothing\") echo "LIB_DEPENDS+= gd.0:\${PORTSDIR}/graphics/gd" echo "PHP_CONF_ARGS+= --with-gd=\${PREFIX}" GD=1 ;; \"FreeType\") + echo "FreeType is DISABLED for now. Ignoring." > /dev/stderr + ;; + \"nothing\") echo "LIB_DEPENDS+= ttf.3:\${PORTSDIR}/print/freetype" echo "PHP_CONF_ARGS+= --with-ttf=\${PREFIX}" if [ -z "$GD" ]; then |