diff options
author | dirk <dirk@FreeBSD.org> | 2001-03-10 13:19:57 +0000 |
---|---|---|
committer | dirk <dirk@FreeBSD.org> | 2001-03-10 13:19:57 +0000 |
commit | 73e10d8fb3304908c60469928f8bdd0cd9c16e9d (patch) | |
tree | 1c82e1bcf7e79adfad791144f7744b291e0d4ccf | |
parent | d368cf07de10ac1c14492df9745f625623ef8e00 (diff) | |
download | FreeBSD-ports-73e10d8fb3304908c60469928f8bdd0cd9c16e9d.zip FreeBSD-ports-73e10d8fb3304908c60469928f8bdd0cd9c16e9d.tar.gz |
Add support options for sysvshm and sysvmem.
-rw-r--r-- | www/mod_php3/scripts/configure.php | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/www/mod_php3/scripts/configure.php b/www/mod_php3/scripts/configure.php index cc5ee2a..bdb9b13 100644 --- a/www/mod_php3/scripts/configure.php +++ b/www/mod_php3/scripts/configure.php @@ -29,6 +29,8 @@ XML "XML support" OFF \ FTP "File Transfer Protocol support" OFF \ gettext "gettext library support" OFF \ YP "YP/NIS support" OFF \ +sysvsem "System V semaphore support" OFF \ +sysvshm "System V shared memory support" OFF \ 2> /tmp/checklist.tmp.$$ retval=$? @@ -156,6 +158,12 @@ while [ "$1" ]; do \"YP\") echo "CONFIGURE_ARGS+=--with-yp" ;; + \"sysvsem\") + echo "CONFIGURE_ARGS+=--enable-sysvsem" + ;; + \"sysvshm\") + echo "CONFIGURE_ARGS+=--enable-sysvshm" + ;; *) echo "Invalid option(s): $*" > /dev/stderr rm -f ${WRKDIRPREFIX}${REALCURDIR}/Makefile.inc |