diff options
author | dirk <dirk@FreeBSD.org> | 2001-03-26 05:50:21 +0800 |
---|---|---|
committer | dirk <dirk@FreeBSD.org> | 2001-03-26 05:50:21 +0800 |
commit | 36a26a79214b655bcb8693a3bf134adb0ff69590 (patch) | |
tree | 633d03d6db7f61e93376fbb55826bf4ee2fa3a08 | |
parent | ab3d6ff539be0e2acaa572c4a01bc48b80d786fe (diff) | |
download | freebsd-ports-gnome-36a26a79214b655bcb8693a3bf134adb0ff69590.tar.gz freebsd-ports-gnome-36a26a79214b655bcb8693a3bf134adb0ff69590.tar.zst freebsd-ports-gnome-36a26a79214b655bcb8693a3bf134adb0ff69590.zip |
Add support for transparent session id.
Submitted by: Dalin S. Owen <dowen@vetica.com>
-rw-r--r-- | www/mod_php4/scripts/configure.php | 4 | ||||
-rw-r--r-- | www/mod_php5/scripts/configure.php | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/www/mod_php4/scripts/configure.php b/www/mod_php4/scripts/configure.php index 7131095ea4da..7bc5e91c696f 100644 --- a/www/mod_php4/scripts/configure.php +++ b/www/mod_php4/scripts/configure.php @@ -35,6 +35,7 @@ ming "ming library support" OFF \ sockets "sockets support" OFF \ sysvsem "System V semaphore support" OFF \ sysvshm "System V shared memory support" OFF \ +transsid "Transparent session id" OFF \ 2> /tmp/checklist.tmp.$$ retval=$? @@ -216,6 +217,9 @@ EOF \"sysvshm\") echo "CONFIGURE_ARGS+=--enable-sysvshm" ;; + \"transsid\") + echo "CONFIGURE_ARGS+=--enable-trans-sid" + ;; *) 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 7131095ea4da..7bc5e91c696f 100644 --- a/www/mod_php5/scripts/configure.php +++ b/www/mod_php5/scripts/configure.php @@ -35,6 +35,7 @@ ming "ming library support" OFF \ sockets "sockets support" OFF \ sysvsem "System V semaphore support" OFF \ sysvshm "System V shared memory support" OFF \ +transsid "Transparent session id" OFF \ 2> /tmp/checklist.tmp.$$ retval=$? @@ -216,6 +217,9 @@ EOF \"sysvshm\") echo "CONFIGURE_ARGS+=--enable-sysvshm" ;; + \"transsid\") + echo "CONFIGURE_ARGS+=--enable-trans-sid" + ;; *) echo "Invalid option(s): $*" > /dev/stderr rm -f ${WRKDIRPREFIX}${REALCURDIR}/Makefile.inc |