diff options
author | dirk <dirk@FreeBSD.org> | 1999-08-20 20:28:37 +0000 |
---|---|---|
committer | dirk <dirk@FreeBSD.org> | 1999-08-20 20:28:37 +0000 |
commit | 53a059124533e39196af162188da61e4a53bc641 (patch) | |
tree | f7cb95a1b49722782e20a57a44b23207ee88c854 /www/mod_php4 | |
parent | ed60837efe5bfb63005a0e07686b27f3bd4ecafb (diff) | |
download | FreeBSD-ports-53a059124533e39196af162188da61e4a53bc641.zip FreeBSD-ports-53a059124533e39196af162188da61e4a53bc641.tar.gz |
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 52bcba2..fa4d4bb 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}" ;; |