comparison auto/options @ 286:fc8dc489247e

nginx-0.0.2-2004-03-12-00:34:52 import
author Igor Sysoev <igor@sysoev.ru>
date Thu, 11 Mar 2004 21:34:52 +0000
parents 8f48e6366d09
children 39b6f2df45c0
comparison
equal deleted inserted replaced
285:8f48e6366d09 286:fc8dc489247e
1 1
2 help=no 2 help=no
3 3
4 CC=gcc 4 CC=gcc
5 CPP=
5 OBJS=objs 6 OBJS=objs
6 7
7 DEBUG=NO 8 DEBUG=NO
8 CPU=NO 9 CPU=NO
9 10
25 HTTP_SSI=YES 26 HTTP_SSI=YES
26 HTTP_PROXY=YES 27 HTTP_PROXY=YES
27 28
28 USE_PCRE=NO 29 USE_PCRE=NO
29 PCRE=NONE 30 PCRE=NONE
30 PCRE_OPT=NO 31 PCRE_OPT=
31 32
32 USE_MD5=NO 33 USE_MD5=NO
33 MD5=NONE 34 MD5=NONE
34 MD5_OPT=NO 35 MD5_OPT=
35 MD5_ASM=NO 36 MD5_ASM=NO
36 37
37 USE_ZLIB=NO 38 USE_ZLIB=NO
38 ZLIB=NONE 39 ZLIB=NONE
39 ZLIB_OPT=NO 40 ZLIB_OPT=
40 ZLIB_ASM=NO 41 ZLIB_ASM=NO
41 42
42 43
43 for option 44 for option
44 do 45 do
68 --without-http_ssi_module) HTTP_SSI=NO ;; 69 --without-http_ssi_module) HTTP_SSI=NO ;;
69 --without-http_gzip_module) HTTP_GZIP=NO ;; 70 --without-http_gzip_module) HTTP_GZIP=NO ;;
70 --without-http_proxy_module) HTTP_PROXY=NO ;; 71 --without-http_proxy_module) HTTP_PROXY=NO ;;
71 72
72 --with-cc=*) CC="$value" ;; 73 --with-cc=*) CC="$value" ;;
74 --with-cpp=*) CPP="$value" ;;
73 --with-cpu-opt=*) CPU="$value" ;; 75 --with-cpu-opt=*) CPU="$value" ;;
74 --with-debug) DEBUG=YES ;; 76 --with-debug) DEBUG=YES ;;
75 77
76 --without-pcre) USE_PCRE=DISABLED ;; 78 --without-pcre) USE_PCRE=DISABLED ;;
77 --with-pcre=*) PCRE="$value" ;; 79 --with-pcre=*) PCRE="$value" ;;
117 echo " --with-zlib=DIR path to zlib library" 119 echo " --with-zlib=DIR path to zlib library"
118 echo 120 echo
119 121
120 exit 1 122 exit 1
121 fi 123 fi
122
123
124 if [ $ZLIB_ASM != NO ]; then
125 ZLIB_ASMV=-DASMV
126 fi