diff options
author | Dirk Froemberg <dirk@FreeBSD.org> | 1999-08-20 20:28:37 +0000 |
---|---|---|
committer | Dirk Froemberg <dirk@FreeBSD.org> | 1999-08-20 20:28:37 +0000 |
commit | bb6211f6b6c6f1fd135424a2fd15fcffe2858f0e (patch) | |
tree | e36e94e3600d55c2d66ac30271648af72b6b97a9 /www/mod_php4 | |
parent | Upgrade to Apache 1.3.9 and mod_ssl 2.4.0. (diff) |
Disable pdflib and IMAP support for PHP. It doesn't seem to work
at the moment.
Reported by: andreas
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 52bcba29d17c..fa4d4bbedd1a 100644 --- a/www/mod_php4/scripts/configure.php +++ b/www/mod_php4/scripts/configure.php @@ -73,6 +73,9 @@ while [ "$1" ]; do echo "PHP_CONF_ARGS+= --with-mhash=\${PREFIX}" ;; \"pdflib\") + echo "pdflib is DISABLED for now. Ignoring." > /dev/stderr + ;; + \"nothing\") echo "LIB_DEPENDS+= pdf.2:\${PORTSDIR}/print/pdflib" echo "PHP_CONF_ARGS+= --with-pdflib=\${PREFIX} \\" echo " --with-jpeg-dir=\${PREFIX} \\" @@ -82,6 +85,9 @@ while [ "$1" ]; do fi ;; \"IMAP\") + echo "IMAP is DISABLED for now. Ignoring." > /dev/stderr + ;; + \"nothing\") echo "BUILD_DEPENDS+= \${PREFIX}/lib/libc-client4.a:\${PORTSDIR}/mail/imap-uw" echo "PHP_CONF_ARGS+= --with-imap=\${PREFIX}" ;; |