diff options
author | Dirk Froemberg <dirk@FreeBSD.org> | 2001-03-25 21:50:21 +0000 |
---|---|---|
committer | Dirk Froemberg <dirk@FreeBSD.org> | 2001-03-25 21:50:21 +0000 |
commit | d1843671e6d967d3b51b56446910b50eb5798012 (patch) | |
tree | ee04f576301503475e8e5cd793dfe6a621bd6919 | |
parent | Fix slightly broken l10n support. (diff) |
Add support for transparent session id.
Submitted by: Dalin S. Owen <dowen@vetica.com>
Notes
Notes:
svn path=/head/; revision=40373
-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 |