summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--www/mod_php4/scripts/configure.php12
-rw-r--r--www/mod_php5/scripts/configure.php12
2 files changed, 24 insertions, 0 deletions
diff --git a/www/mod_php4/scripts/configure.php b/www/mod_php4/scripts/configure.php
index 490b1e1c314f..986fd90fe9a6 100644
--- a/www/mod_php4/scripts/configure.php
+++ b/www/mod_php4/scripts/configure.php
@@ -32,6 +32,9 @@ jstring "jstring module" OFF \
YP "YP/NIS support" OFF \
BCMath "BCMath support" OFF \
ming "ming library support" OFF \
+sockets "sockets support" OFF \
+sysvsem "System V semaphore support" OFF \
+sysvshm "System V shared memory support" OFF \
2> /tmp/checklist.tmp.$$
retval=$?
@@ -202,6 +205,15 @@ post-extract-ming:
EOF
;;
+ \"sockets\")
+ echo "CONFIGURE_ARGS+=--enable-sockets"
+ ;;
+ \"sysvsem\")
+ echo "CONFIGURE_ARGS+=--enable-sysvsem"
+ ;;
+ \"sysvshm\")
+ echo "CONFIGURE_ARGS+=--enable-sysvshm"
+ ;;
*)
echo "Invalid option(s): $*" > /dev/stderr
rm -f ${WRKDIRPREFIX}${REALCURDIR}/Makefile.inc
diff --git a/www/mod_php5/scripts/configure.php b/www/mod_php5/scripts/configure.php
index 490b1e1c314f..986fd90fe9a6 100644
--- a/www/mod_php5/scripts/configure.php
+++ b/www/mod_php5/scripts/configure.php
@@ -32,6 +32,9 @@ jstring "jstring module" OFF \
YP "YP/NIS support" OFF \
BCMath "BCMath support" OFF \
ming "ming library support" OFF \
+sockets "sockets support" OFF \
+sysvsem "System V semaphore support" OFF \
+sysvshm "System V shared memory support" OFF \
2> /tmp/checklist.tmp.$$
retval=$?
@@ -202,6 +205,15 @@ post-extract-ming:
EOF
;;
+ \"sockets\")
+ echo "CONFIGURE_ARGS+=--enable-sockets"
+ ;;
+ \"sysvsem\")
+ echo "CONFIGURE_ARGS+=--enable-sysvsem"
+ ;;
+ \"sysvshm\")
+ echo "CONFIGURE_ARGS+=--enable-sysvshm"
+ ;;
*)
echo "Invalid option(s): $*" > /dev/stderr
rm -f ${WRKDIRPREFIX}${REALCURDIR}/Makefile.inc