comparison auto/options @ 148:ea622d8acb38 NGINX_0_3_21

nginx 0.3.21 *) Feature: the ngx_http_perl_module. *) Change: the "valid_referers" directive allows the referreres without URI part.
author Igor Sysoev <http://sysoev.ru>
date Mon, 16 Jan 2006 00:00:00 +0300
parents 8e6d4d96ec4c
children 73e8476f9142
comparison
equal deleted inserted replaced
147:d1b9f90d95f6 148:ea622d8acb38
60 HTTP_MAP=YES 60 HTTP_MAP=YES
61 HTTP_REFERER=YES 61 HTTP_REFERER=YES
62 HTTP_REWRITE=YES 62 HTTP_REWRITE=YES
63 HTTP_PROXY=YES 63 HTTP_PROXY=YES
64 HTTP_FASTCGI=YES 64 HTTP_FASTCGI=YES
65 HTTP_PERL=NO
65 HTTP_MEMCACHED=YES 66 HTTP_MEMCACHED=YES
66 HTTP_EMPTY_GIF=YES 67 HTTP_EMPTY_GIF=YES
67 68
68 # STUB 69 # STUB
69 HTTP_STUB_STATUS=NO 70 HTTP_STUB_STATUS=NO
87 88
88 USE_ZLIB=NO 89 USE_ZLIB=NO
89 ZLIB=NONE 90 ZLIB=NONE
90 ZLIB_OPT= 91 ZLIB_OPT=
91 ZLIB_ASM=NO 92 ZLIB_ASM=NO
93
94 USE_PERL=NO
95 NGX_PERL=perl
92 96
93 NGX_CPU_CACHE_LINE= 97 NGX_CPU_CACHE_LINE=
94 98
95 99
96 for option 100 for option
148 --without-http_proxy_module) HTTP_PROXY=NO ;; 152 --without-http_proxy_module) HTTP_PROXY=NO ;;
149 --without-http_fastcgi_module) HTTP_FASTCGI=NO ;; 153 --without-http_fastcgi_module) HTTP_FASTCGI=NO ;;
150 --without-http_memcached_module) HTTP_MEMCACHED=NO ;; 154 --without-http_memcached_module) HTTP_MEMCACHED=NO ;;
151 --without-http_empty_gif_module) HTTP_EMPTY_GIF=NO ;; 155 --without-http_empty_gif_module) HTTP_EMPTY_GIF=NO ;;
152 156
157 --with-http_perl_module) HTTP_PERL=YES ;;
158 --with-perl_modules_path=*) NGX_PERL_MODULES="$value" ;;
159 --with-perl=*) NGX_PERL="$value" ;;
160
153 # STUB 161 # STUB
154 --with-http_stub_status_module) HTTP_STUB_STATUS=YES ;; 162 --with-http_stub_status_module) HTTP_STUB_STATUS=YES ;;
155 163
156 --with-imap) IMAP=YES ;; 164 --with-imap) IMAP=YES ;;
157 --with-imap_ssl_module) IMAP_SSL=YES ;; 165 --with-imap_ssl_module) IMAP_SSL=YES ;;
233 --without-http_proxy_module disable ngx_http_proxy_module 241 --without-http_proxy_module disable ngx_http_proxy_module
234 --without-http_fastcgi_module disable ngx_http_fastcgi_module 242 --without-http_fastcgi_module disable ngx_http_fastcgi_module
235 --without-http_memcached_module disable ngx_http_memcached_module 243 --without-http_memcached_module disable ngx_http_memcached_module
236 --without-http_empty_gif_module disable ngx_http_empty_gif_module 244 --without-http_empty_gif_module disable ngx_http_empty_gif_module
237 245
246 --with-http_perl_module enable ngx_http_perl_module
247 --with-perl_modules_path=PATH set path to the perl modules
248 --with-perl=PATH set path to the perl binary
249
238 --http-log-path=PATH set path to the http access log 250 --http-log-path=PATH set path to the http access log
239 --http-client-body-temp-path=PATH set path to the http client request body 251 --http-client-body-temp-path=PATH set path to the http client request body
240 temporary files path 252 temporary files path
241 --http-proxy-temp-path=PATH set path to the http proxy temporary 253 --http-proxy-temp-path=PATH set path to the http proxy temporary
242 files path 254 files path
412 424
413 *) 425 *)
414 NGX_HTTP_FASTCGI_TEMP_PATH=$NGX_PREFIX/$NGX_HTTP_FASTCGI_TEMP_PATH 426 NGX_HTTP_FASTCGI_TEMP_PATH=$NGX_PREFIX/$NGX_HTTP_FASTCGI_TEMP_PATH
415 ;; 427 ;;
416 esac 428 esac
429
430
431 case ".$NGX_PERL_MODULES" in
432 ./*)
433 ;;
434
435 .)
436 ;;
437
438 *)
439 NGX_PERL_MODULES=$NGX_PREFIX/$NGX_PERL_MODULES
440 ;;
441 esac