diff options
author | Dirk Froemberg <dirk@FreeBSD.org> | 1999-12-28 10:17:34 +0000 |
---|---|---|
committer | Dirk Froemberg <dirk@FreeBSD.org> | 1999-12-28 10:17:34 +0000 |
commit | 7029af8c65ab58205d99d325016c7efa7681f3c9 (patch) | |
tree | 48a3fa0b33a396ccd2d2cc215c2121c5acdc8494 /www/mod_php4 | |
parent | Follow apache13 and take out configuration files of apache (diff) |
- add $FreeBSD$
- disable mhash:
This option causes apache to be linked with -lc _and_ -lc_r.
As a result apache crashes on startup.
Diffstat (limited to 'www/mod_php4')
-rw-r--r-- | www/mod_php4/scripts/configure.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/www/mod_php4/scripts/configure.php b/www/mod_php4/scripts/configure.php index 70df22e543fa..0d64999efa95 100644 --- a/www/mod_php4/scripts/configure.php +++ b/www/mod_php4/scripts/configure.php @@ -1,4 +1,5 @@ #!/bin/sh +# $FreeBSD$ if [ "${BATCH}" ]; then ${MKDIR} ${WRKDIRPREFIX}${CURDIR} @@ -82,6 +83,9 @@ while [ "$1" ]; do echo "PHP_CONF_ARGS+= --with-mcrypt=\${PREFIX}" ;; \"mhash\") + echo "mhash is DISABLED for now. Ignoring." > /dev/stderr + ;; + \"nothing\") echo "LIB_DEPENDS+= mhash.1:\${PORTSDIR}/security/mhash" echo "PHP_CONF_ARGS+= --with-mhash=\${PREFIX}" ;; |