comparison auto/options @ 255:e6938ca7331a

nginx-0.0.2-2004-02-09-23:47:18 import
author Igor Sysoev <igor@sysoev.ru>
date Mon, 09 Feb 2004 20:47:18 +0000
parents b6793bc5034b
children 5dacbb4daaf6
comparison
equal deleted inserted replaced
254:98c77ca0f354 255:e6938ca7331a
17 HTTP_REWRITE=YES 17 HTTP_REWRITE=YES
18 HTTP_GZIP=YES 18 HTTP_GZIP=YES
19 HTTP_SSI=YES 19 HTTP_SSI=YES
20 HTTP_PROXY=YES 20 HTTP_PROXY=YES
21 21
22 USE_PCRE=NO
22 PCRE=NO 23 PCRE=NO
23 24
24 USE_MD5=NO 25 USE_MD5=NO
25 MD5=NONE 26 MD5=NONE
26 27
41 --crossbuild=*) PLATFORM="$value" ;; 42 --crossbuild=*) PLATFORM="$value" ;;
42 43
43 --builddir=*) OBJS="$value" ;; 44 --builddir=*) OBJS="$value" ;;
44 45
45 --with-select_module) EVENT_SELECT=YES ;; 46 --with-select_module) EVENT_SELECT=YES ;;
47 --without-select_module) EVENT_SELECT=NONE ;;
46 --with-poll_module) EVENT_POLL=YES ;; 48 --with-poll_module) EVENT_POLL=YES ;;
49 --without-poll_module) EVENT_POLL=NONE ;;
47 --with-aio_module) EVENT_AIO=YES ;; 50 --with-aio_module) EVENT_AIO=YES ;;
48 51
49 --without-http_rewrite_module) HTTP_REWRITE=NO ;; 52 --without-http_rewrite_module) HTTP_REWRITE=NO ;;
50 --without-http_ssi_module) HTTP_SSI=NO ;; 53 --without-http_ssi_module) HTTP_SSI=NO ;;
51 --without-http_gzip_module) HTTP_GZIP=NO ;; 54 --without-http_gzip_module) HTTP_GZIP=NO ;;
52 --without-http_proxy_module) HTTP_PROXY=NO ;; 55 --without-http_proxy_module) HTTP_PROXY=NO ;;
53 56
54 --with-cc=*) CC="$value" ;; 57 --with-cc=*) CC="$value" ;;
55 58
59 --without-pcre) PCRE=NONE ;;
56 --with-pcre=*) PCRE="$value" ;; 60 --with-pcre=*) PCRE="$value" ;;
57 --with-md5=*) MD5="$value" ;; 61 --with-md5=*) MD5="$value" ;;
58 --with-zlib=*) ZLIB="$value" ;; 62 --with-zlib=*) ZLIB="$value" ;;
59 63
60 --test-build-devpoll) TEST_BUILD_DEVPOLL=YES ;; 64 --test-build-devpoll) TEST_BUILD_DEVPOLL=YES ;;