comparison auto/options @ 248:e885208c518b

nginx-0.0.2-2004-02-03-00:19:52 import
author Igor Sysoev <igor@sysoev.ru>
date Mon, 02 Feb 2004 21:19:52 +0000
parents 6753e8cdaa2c
children b6793bc5034b
comparison
equal deleted inserted replaced
247:008276b9e061 248:e885208c518b
6 6
7 TEST_BUILD_DEVPOLL=NO 7 TEST_BUILD_DEVPOLL=NO
8 TEST_BUILD_EPOLL=NO 8 TEST_BUILD_EPOLL=NO
9 TEST_BUILD_SIGIO=NO 9 TEST_BUILD_SIGIO=NO
10 10
11 SELECT=YES 11 EVENT_FOUND=NO
12 POLL=YES 12
13 EVENT_SELECT=NO
14 EVENT_POLL=NO
15 EVENT_AIO=NO
13 16
14 HTTP_REWRITE=YES 17 HTTP_REWRITE=YES
15 HTTP_GZIP=YES 18 HTTP_GZIP=YES
16 HTTP_SSI=YES 19 HTTP_SSI=YES
17 HTTP_PROXY=YES 20 HTTP_PROXY=YES
18 21
19 PCRE=NO 22 PCRE=NO
20 23
21 USE_MD5=YES 24 USE_MD5=NO
22 MD5=NO 25 MD5=NO
23 MD5_LIB=NO 26 MD5_LIB=NO
24 27
25 USE_ZLIB=YES 28 USE_ZLIB=NO
26 ZLIB=NO 29 ZLIB=NO
27 ZLIB_LIB=NO 30 ZLIB_LIB=NO
28 31
29 32
30 for option 33 for option
39 42
40 --crossbuild=*) PLATFORM="$value" ;; 43 --crossbuild=*) PLATFORM="$value" ;;
41 44
42 --builddir=*) OBJS="$value" ;; 45 --builddir=*) OBJS="$value" ;;
43 46
44 --without-select_module) SELECT=NO ;; 47 --with-select_module) EVENT_SELECT=YES ;;
45 --without-poll_module) POLL=NO ;; 48 --with-poll_module) EVENT_POLL=YES ;;
49 --with-aio_module) EVENT_AIO=YES ;;
46 50
47 --without-http_rewrite_module) HTTP_REWRITE=NO ;; 51 --without-http_rewrite_module) HTTP_REWRITE=NO ;;
48 --without-http_ssi_module) HTTP_SSI=NO ;; 52 --without-http_ssi_module) HTTP_SSI=NO ;;
49 --without-http_gzip_module) HTTP_GZIP=NO ;; 53 --without-http_gzip_module) HTTP_GZIP=NO ;;
50 --without-http_proxy_module) HTTP_PROXY=NO ;; 54 --without-http_proxy_module) HTTP_PROXY=NO ;;