nginx/auto/options

126 lines
3.6 KiB
Plaintext
Raw Normal View History

2003-11-25 14:44:56 -06:00
2003-12-14 14:10:27 -06:00
help=no
2003-11-25 14:44:56 -06:00
CC=gcc
2004-03-11 15:34:52 -06:00
CPP=
2003-11-25 14:44:56 -06:00
OBJS=objs
2004-03-11 09:42:41 -06:00
DEBUG=NO
2004-04-14 12:44:28 -05:00
CC_OPT=
2004-03-10 14:56:39 -06:00
CPU=NO
2004-03-10 11:55:19 -06:00
2003-11-25 14:44:56 -06:00
TEST_BUILD_DEVPOLL=NO
2004-01-29 15:45:01 -06:00
TEST_BUILD_EPOLL=NO
2004-02-17 11:53:12 -06:00
TEST_BUILD_RTSIG=NO
2003-11-25 14:44:56 -06:00
2004-02-02 15:19:52 -06:00
EVENT_FOUND=NO
2004-02-17 11:53:12 -06:00
EVENT_RTSIG=NO
2004-02-02 15:19:52 -06:00
EVENT_SELECT=NO
EVENT_POLL=NO
EVENT_AIO=NO
2004-01-23 03:26:18 -06:00
2004-02-23 14:57:12 -06:00
USE_THREADS=NO
2003-12-25 14:26:58 -06:00
HTTP_REWRITE=YES
2003-11-25 14:44:56 -06:00
HTTP_GZIP=YES
2004-01-26 02:52:49 -06:00
HTTP_SSI=YES
2003-11-25 14:44:56 -06:00
HTTP_PROXY=YES
2004-02-09 14:47:18 -06:00
USE_PCRE=NO
2004-02-19 02:45:27 -06:00
PCRE=NONE
2004-03-11 15:34:52 -06:00
PCRE_OPT=
2003-11-25 14:44:56 -06:00
2004-02-02 15:19:52 -06:00
USE_MD5=NO
2004-02-09 01:46:43 -06:00
MD5=NONE
2004-03-11 15:34:52 -06:00
MD5_OPT=
2004-03-10 14:56:39 -06:00
MD5_ASM=NO
2003-11-25 14:44:56 -06:00
2004-02-02 15:19:52 -06:00
USE_ZLIB=NO
2004-02-09 01:46:43 -06:00
ZLIB=NONE
2004-03-11 15:34:52 -06:00
ZLIB_OPT=
2004-03-10 14:56:39 -06:00
ZLIB_ASM=NO
2003-11-25 14:44:56 -06:00
for option
do
case "$option" in
-*=*) value=`echo "$option" | sed -e 's/[-_a-zA-Z0-9]*=//'` ;;
*) value="" ;;
esac
case "$option" in
2003-12-14 14:10:27 -06:00
--help) help=yes ;;
2003-11-25 14:44:56 -06:00
--crossbuild=*) PLATFORM="$value" ;;
--builddir=*) OBJS="$value" ;;
2004-02-17 11:53:12 -06:00
--with-rtsig_module) EVENT_RTSIG=YES ;;
2004-02-02 15:19:52 -06:00
--with-select_module) EVENT_SELECT=YES ;;
2004-02-09 14:47:18 -06:00
--without-select_module) EVENT_SELECT=NONE ;;
2004-02-02 15:19:52 -06:00
--with-poll_module) EVENT_POLL=YES ;;
2004-02-09 14:47:18 -06:00
--without-poll_module) EVENT_POLL=NONE ;;
2004-02-02 15:19:52 -06:00
--with-aio_module) EVENT_AIO=YES ;;
2004-01-23 03:26:18 -06:00
2004-02-23 14:57:12 -06:00
--with-threads=*) USE_THREADS="$value" ;;
--with-threads) USE_THREADS="pthreads" ;;
2003-12-25 14:26:58 -06:00
--without-http_rewrite_module) HTTP_REWRITE=NO ;;
2004-01-26 02:52:49 -06:00
--without-http_ssi_module) HTTP_SSI=NO ;;
2003-11-25 14:44:56 -06:00
--without-http_gzip_module) HTTP_GZIP=NO ;;
--without-http_proxy_module) HTTP_PROXY=NO ;;
--with-cc=*) CC="$value" ;;
2004-03-11 15:34:52 -06:00
--with-cpp=*) CPP="$value" ;;
2004-04-14 12:44:28 -05:00
--with-cc-opt=*) CC_OPT="$value" ;;
2004-03-10 14:56:39 -06:00
--with-cpu-opt=*) CPU="$value" ;;
2004-03-11 09:42:41 -06:00
--with-debug) DEBUG=YES ;;
2003-11-25 14:44:56 -06:00
2004-02-19 10:48:14 -06:00
--without-pcre) USE_PCRE=DISABLED ;;
2003-11-25 14:44:56 -06:00
--with-pcre=*) PCRE="$value" ;;
2004-03-10 14:56:39 -06:00
--with-pcre-opt=*) PCRE_OPT="$value" ;;
2003-11-25 14:44:56 -06:00
--with-md5=*) MD5="$value" ;;
2004-03-10 14:56:39 -06:00
--with-md5-opt=*) MD5_OPT="$value" ;;
--with-md5-asm) MD5_ASM=YES ;;
2003-11-25 14:44:56 -06:00
--with-zlib=*) ZLIB="$value" ;;
2004-03-10 11:55:19 -06:00
--with-zlib-opt=*) ZLIB_OPT="$value" ;;
2004-03-10 14:56:39 -06:00
--with-zlib-asm=*) ZLIB_ASM="$value" ;;
2003-11-25 14:44:56 -06:00
--test-build-devpoll) TEST_BUILD_DEVPOLL=YES ;;
2004-01-29 15:45:01 -06:00
--test-build-epoll) TEST_BUILD_EPOLL=YES ;;
2004-02-17 11:53:12 -06:00
--test-build-rtsig) TEST_BUILD_RTSIG=YES ;;
2003-11-25 14:44:56 -06:00
*)
echo "$0: error: invalid option \"$option\""
exit 1
;;
esac
done
2003-12-14 14:10:27 -06:00
if [ $help = yes ]; then
echo
2004-01-23 03:26:18 -06:00
echo " --help this message"
echo
echo " --without-select_module disable select_module"
echo " --without-poll_module disable poll_module"
2003-11-25 14:44:56 -06:00
2004-01-23 03:26:18 -06: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-25 14:44:56 -06:00
2004-01-23 03:26:18 -06:00
echo " --with-cc=NAME name of or path to C compiler"
2003-11-25 14:44:56 -06:00
echo
2004-01-23 03:26:18 -06: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-14 14:10:27 -06:00
echo
2003-11-25 14:44:56 -06:00
exit 1
fi