diff options
author | Dirk Froemberg <dirk@FreeBSD.org> | 2001-03-10 13:19:57 +0000 |
---|---|---|
committer | Dirk Froemberg <dirk@FreeBSD.org> | 2001-03-10 13:19:57 +0000 |
commit | 74fbc5a1e9f750097c1120018314d26a106fe5ab (patch) | |
tree | 4738b4ca9a6f74f376b73a130d155b2e9d892aee /www/mod_php3 | |
parent | 98c06207c3f80b8da622c03363c9d573bc6e4204 (diff) | |
download | ports-74fbc5a1e9f750097c1120018314d26a106fe5ab.tar.gz ports-74fbc5a1e9f750097c1120018314d26a106fe5ab.zip |
Notes
Diffstat (limited to 'www/mod_php3')
-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 cc5ee2ae22a4..bdb9b13c4091 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 |