nginx/auto/options

94 lines
2.4 KiB
Plaintext
Raw Normal View History

2003-11-26 04:44:56 +08:00
2003-12-15 04:10:27 +08:00
help=no
2003-11-26 04:44:56 +08:00
CC=gcc
OBJS=objs
TEST_BUILD_DEVPOLL=NO
2004-01-30 05:45:01 +08:00
TEST_BUILD_EPOLL=NO
2004-01-31 01:39:00 +08:00
TEST_BUILD_SIGIO=NO
2003-11-26 04:44:56 +08:00
2004-02-03 05:19:52 +08:00
EVENT_FOUND=NO
EVENT_SELECT=NO
EVENT_POLL=NO
EVENT_AIO=NO
2004-01-23 17:26:18 +08:00
2003-12-26 04:26:58 +08:00
HTTP_REWRITE=YES
2003-11-26 04:44:56 +08:00
HTTP_GZIP=YES
2004-01-26 16:52:49 +08:00
HTTP_SSI=YES
2003-11-26 04:44:56 +08:00
HTTP_PROXY=YES
PCRE=NO
2004-02-03 05:19:52 +08:00
USE_MD5=NO
2004-02-09 15:46:43 +08:00
MD5=NONE
2003-11-26 04:44:56 +08:00
2004-02-03 05:19:52 +08:00
USE_ZLIB=NO
2004-02-09 15:46:43 +08:00
ZLIB=NONE
2003-11-26 04:44:56 +08:00
for option
do
case "$option" in
-*=*) value=`echo "$option" | sed -e 's/[-_a-zA-Z0-9]*=//'` ;;
*) value="" ;;
esac
case "$option" in
2003-12-15 04:10:27 +08:00
--help) help=yes ;;
2003-11-26 04:44:56 +08:00
--crossbuild=*) PLATFORM="$value" ;;
--builddir=*) OBJS="$value" ;;
2004-02-03 05:19:52 +08:00
--with-select_module) EVENT_SELECT=YES ;;
--with-poll_module) EVENT_POLL=YES ;;
--with-aio_module) EVENT_AIO=YES ;;
2004-01-23 17:26:18 +08:00
2003-12-26 04:26:58 +08:00
--without-http_rewrite_module) HTTP_REWRITE=NO ;;
2004-01-26 16:52:49 +08:00
--without-http_ssi_module) HTTP_SSI=NO ;;
2003-11-26 04:44:56 +08:00
--without-http_gzip_module) HTTP_GZIP=NO ;;
--without-http_proxy_module) HTTP_PROXY=NO ;;
--with-cc=*) CC="$value" ;;
--with-pcre=*) PCRE="$value" ;;
--with-md5=*) MD5="$value" ;;
--with-zlib=*) ZLIB="$value" ;;
--test-build-devpoll) TEST_BUILD_DEVPOLL=YES ;;
2004-01-30 05:45:01 +08:00
--test-build-epoll) TEST_BUILD_EPOLL=YES ;;
2004-01-31 01:39:00 +08:00
--test-build-sigio) TEST_BUILD_SIGIO=YES ;;
2003-11-26 04:44:56 +08:00
*)
echo "$0: error: invalid option \"$option\""
exit 1
;;
esac
done
2003-12-15 04:10:27 +08:00
if [ $help = yes ]; then
echo
2004-01-23 17:26:18 +08:00
echo " --help this message"
echo
echo " --without-select_module disable select_module"
echo " --without-poll_module disable poll_module"
2003-11-26 04:44:56 +08:00
2004-01-23 17:26:18 +08:00
echo " --without-http_rewrite_module disable http_rewrite_module"
echo " --without-http_gzip_module disable http_gzip_module"
echo " --without-http_proxy_module disable http_proxy_module"
2003-11-26 04:44:56 +08:00
2004-01-23 17:26:18 +08:00
echo " --with-cc=NAME name of or path to C compiler"
2003-11-26 04:44:56 +08:00
echo
2004-01-23 17:26:18 +08:00
echo " --with-pcre=DIR path to PCRE library"
echo " --with-md5=DIR path to md5 library"
echo " --with-zlib=DIR path to zlib library"
2003-12-15 04:10:27 +08:00
echo
2003-11-26 04:44:56 +08:00
exit 1
fi