nginx/auto/options

189 lines
5.3 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
2004-05-19 04:28:54 +08:00
PREFIX=
SBIN_PATH=
CONF_PATH=
HTTP_LOG_PATH=
ERROR_LOG_PATH=
PID_PATH=
2003-11-26 04:44:56 +08:00
CC=gcc
2004-03-12 05:34:52 +08:00
CPP=
2003-11-26 04:44:56 +08:00
OBJS=objs
2004-03-11 23:42:41 +08:00
DEBUG=NO
2004-04-15 01:44:28 +08:00
CC_OPT=
2004-03-11 04:56:39 +08:00
CPU=NO
2004-03-11 01:55:19 +08:00
2003-11-26 04:44:56 +08:00
TEST_BUILD_DEVPOLL=NO
2004-01-30 05:45:01 +08:00
TEST_BUILD_EPOLL=NO
2004-02-18 01:53:12 +08:00
TEST_BUILD_RTSIG=NO
2003-11-26 04:44:56 +08:00
2004-02-03 05:19:52 +08:00
EVENT_FOUND=NO
2004-02-18 01:53:12 +08:00
EVENT_RTSIG=NO
2004-02-03 05:19:52 +08:00
EVENT_SELECT=NO
EVENT_POLL=NO
EVENT_AIO=NO
2004-01-23 17:26:18 +08:00
2004-02-24 04:57:12 +08:00
USE_THREADS=NO
HTTP=YES
2004-06-23 00:43:09 +08:00
HTTP_CHARSET=YES
2003-11-26 04:44:56 +08:00
HTTP_GZIP=YES
2004-07-08 23:17:47 +08:00
HTTP_SSL=NO
2004-01-26 16:52:49 +08:00
HTTP_SSI=YES
2004-06-25 00:07:04 +08:00
HTTP_ACCESS=YES
HTTP_USERID=YES
2004-06-24 15:53:37 +08:00
HTTP_STATUS=YES
HTTP_REWRITE=YES
2003-11-26 04:44:56 +08:00
HTTP_PROXY=YES
2004-02-10 04:47:18 +08:00
USE_PCRE=NO
2004-02-19 16:45:27 +08:00
PCRE=NONE
2004-03-12 05:34:52 +08:00
PCRE_OPT=
2003-11-26 04:44:56 +08:00
2004-07-26 02:34:14 +08:00
USE_OPENSSL=NO
OPENSSL=NONE
2004-02-03 05:19:52 +08:00
USE_MD5=NO
2004-02-09 15:46:43 +08:00
MD5=NONE
2004-03-12 05:34:52 +08:00
MD5_OPT=
2004-03-11 04:56:39 +08:00
MD5_ASM=NO
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
2004-03-12 05:34:52 +08:00
ZLIB_OPT=
2004-03-11 04:56:39 +08:00
ZLIB_ASM=NO
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
2004-05-19 04:28:54 +08:00
--prefix=*) PREFIX="$value" ;;
--sbin-path=*) SBIN_PATH="$value" ;;
--conf-path=*) CONF_PATH="$value" ;;
--error-log-path=*) ERROR_LOG_PATH="$value" ;;
--pid-path=*) PID_PATH="$value" ;;
2003-11-26 04:44:56 +08:00
--crossbuild=*) PLATFORM="$value" ;;
--builddir=*) OBJS="$value" ;;
2004-02-18 01:53:12 +08:00
--with-rtsig_module) EVENT_RTSIG=YES ;;
2004-02-03 05:19:52 +08:00
--with-select_module) EVENT_SELECT=YES ;;
2004-02-10 04:47:18 +08:00
--without-select_module) EVENT_SELECT=NONE ;;
2004-02-03 05:19:52 +08:00
--with-poll_module) EVENT_POLL=YES ;;
2004-02-10 04:47:18 +08:00
--without-poll_module) EVENT_POLL=NONE ;;
2004-02-03 05:19:52 +08:00
--with-aio_module) EVENT_AIO=YES ;;
2004-01-23 17:26:18 +08:00
2004-02-24 04:57:12 +08:00
--with-threads=*) USE_THREADS="$value" ;;
--with-threads) USE_THREADS="pthreads" ;;
--without-http) HTTP=NO ;;
--http-log-path=*) HTTP_LOG_PATH="$value" ;;
2004-07-08 23:17:47 +08:00
--with-http_ssl_module) HTTP_SSL=YES ;;
2004-06-23 00:43:09 +08:00
--without-http_charset_module) HTTP_CHARSET=NO ;;
2003-11-26 04:44:56 +08:00
--without-http_gzip_module) HTTP_GZIP=NO ;;
2004-07-08 23:17:47 +08:00
--without-http_ssi_module) HTTP_SSI=NO ;;
--without-http_userid_module) HTTP_USERID=NO ;;
--without-http_access_module) HTTP_ACCESS=NO ;;
2004-06-24 15:53:37 +08:00
--without-http_status_module) HTTP_STATUS=NO ;;
--without-http_rewrite_module) HTTP_REWRITE=NO ;;
2003-11-26 04:44:56 +08:00
--without-http_proxy_module) HTTP_PROXY=NO ;;
--with-cc=*) CC="$value" ;;
2004-03-12 05:34:52 +08:00
--with-cpp=*) CPP="$value" ;;
2004-04-15 01:44:28 +08:00
--with-cc-opt=*) CC_OPT="$value" ;;
2004-03-11 04:56:39 +08:00
--with-cpu-opt=*) CPU="$value" ;;
2004-03-11 23:42:41 +08:00
--with-debug) DEBUG=YES ;;
2003-11-26 04:44:56 +08:00
2004-02-20 00:48:14 +08:00
--without-pcre) USE_PCRE=DISABLED ;;
2003-11-26 04:44:56 +08:00
--with-pcre=*) PCRE="$value" ;;
2004-03-11 04:56:39 +08:00
--with-pcre-opt=*) PCRE_OPT="$value" ;;
2004-07-26 02:34:14 +08:00
--with-openssl=*) OPENSSL="$value" ;;
2003-11-26 04:44:56 +08:00
--with-md5=*) MD5="$value" ;;
2004-03-11 04:56:39 +08:00
--with-md5-opt=*) MD5_OPT="$value" ;;
--with-md5-asm) MD5_ASM=YES ;;
2003-11-26 04:44:56 +08:00
--with-zlib=*) ZLIB="$value" ;;
2004-03-11 01:55:19 +08:00
--with-zlib-opt=*) ZLIB_OPT="$value" ;;
2004-03-11 04:56:39 +08:00
--with-zlib-asm=*) ZLIB_ASM="$value" ;;
2003-11-26 04:44:56 +08:00
--test-build-devpoll) TEST_BUILD_DEVPOLL=YES ;;
2004-01-30 05:45:01 +08:00
--test-build-epoll) TEST_BUILD_EPOLL=YES ;;
2004-02-18 01:53:12 +08:00
--test-build-rtsig) TEST_BUILD_RTSIG=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
2004-04-22 02:54:33 +08:00
if [ ".$PLATFORM" = ".win32" -a $EVENT_POLL = YES ]; then
EVENT_POLL=NO
echo "$0: warning: --with-poll_module option is ignored for win32"
fi
2004-05-19 04:28:54 +08:00
if [ ".$PREFIX" = "." ]; then
PREFIX=/usr/local/nginx
fi
if [ ".$SBIN_PATH" = "." ]; then
SBIN_PATH=$PREFIX/sbin/nginx
fi
if [ ".$CONF_PATH" = "." ]; then
CONF_PATH=$PREFIX/conf/nginx.conf
fi
if [ ".$PID_PATH" = "." ]; then
PID_PATH=$PREFIX/logs/nginx.pid
fi
if [ ".$ERROR_LOG_PATH" = "." ]; then
ERROR_LOG_PATH=$PREFIX/logs/error.log
fi
if [ ".$HTTP_LOG_PATH" = "." ]; then
HTTP_LOG_PATH=$PREFIX/logs/access.log
fi