aboutsummaryrefslogtreecommitdiffstats
path: root/www
diff options
context:
space:
mode:
authordirk <dirk@FreeBSD.org>1999-12-28 18:17:34 +0800
committerdirk <dirk@FreeBSD.org>1999-12-28 18:17:34 +0800
commit4c2d3a0544b9a8864ca3f190e74f5a00a056ee99 (patch)
treedc2f6953b25a9313d9a7126d8bd97deef9cae5b3 /www
parent728fefd73e3e799450b2d89aaa79072bd40493a1 (diff)
downloadfreebsd-ports-gnome-4c2d3a0544b9a8864ca3f190e74f5a00a056ee99.tar.gz
freebsd-ports-gnome-4c2d3a0544b9a8864ca3f190e74f5a00a056ee99.tar.zst
freebsd-ports-gnome-4c2d3a0544b9a8864ca3f190e74f5a00a056ee99.zip
- 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')
-rw-r--r--www/mod_php3/scripts/configure.php4
-rw-r--r--www/mod_php4/scripts/configure.php4
-rw-r--r--www/mod_php5/scripts/configure.php4
3 files changed, 12 insertions, 0 deletions
diff --git a/www/mod_php3/scripts/configure.php b/www/mod_php3/scripts/configure.php
index 14af329e52ee..dabda8c17ea5 100644
--- a/www/mod_php3/scripts/configure.php
+++ b/www/mod_php3/scripts/configure.php
@@ -1,4 +1,5 @@
#!/bin/sh
+# $FreeBSD$
if [ "${BATCH}" ]; then
${MKDIR} ${WRKDIRPREFIX}${CURDIR}
@@ -76,6 +77,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}"
;;
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}"
;;
diff --git a/www/mod_php5/scripts/configure.php b/www/mod_php5/scripts/configure.php
index 70df22e543fa..0d64999efa95 100644
--- a/www/mod_php5/scripts/configure.php
+++ b/www/mod_php5/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}"
;;