Add support option for sockets, sysvshm and sysvmem.

This commit is contained in:
Dirk Froemberg 2001-03-10 13:19:22 +00:00
parent 36dacb9b52
commit 98c06207c3
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=39422
2 changed files with 24 additions and 0 deletions

View File

@ -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

View File

@ -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