summaryrefslogtreecommitdiff
path: root/www/mod_php3
diff options
context:
space:
mode:
authorDirk Froemberg <dirk@FreeBSD.org>2001-02-17 13:33:18 +0000
committerDirk Froemberg <dirk@FreeBSD.org>2001-02-17 13:33:18 +0000
commit7713ca376907b9c63f12420a1ee27b6f6d163192 (patch)
tree86ef5dd50c917d95087fc515ce06df36150c4b14 /www/mod_php3
parentUpdate to from 4.11 to 4.16 (diff)
Disable mcrypt support. I doesn't compile at the moment due to recent
mcrypt upgrade.
Notes
Notes: svn path=/head/; revision=38425
Diffstat (limited to 'www/mod_php3')
-rw-r--r--www/mod_php3/scripts/configure.php5
1 files changed, 4 insertions, 1 deletions
diff --git a/www/mod_php3/scripts/configure.php b/www/mod_php3/scripts/configure.php
index 9d54c3db639f..c9c1aa0f0b16 100644
--- a/www/mod_php3/scripts/configure.php
+++ b/www/mod_php3/scripts/configure.php
@@ -71,7 +71,10 @@ while [ "$1" ]; do
ZLIB=1
;;
\"mcrypt\")
- echo "LIB_DEPENDS+= mcrypt.2:\${PORTSDIR}/security/libmcrypt"
+ echo "mcrypt support doesn't compile at the moment. Ignoring." > /dev/stderr
+ ;;
+ \"nothing\")
+ echo "LIB_DEPENDS+= mcrypt.5:\${PORTSDIR}/security/libmcrypt"
echo "CONFIGURE_ARGS+=--with-mcrypt=\${PREFIX}"
;;
\"mhash\")