diff options
| author | Igor Sysoev <igor@sysoev.ru> | 2004-08-27 15:40:59 +0000 |
|---|---|---|
| committer | Igor Sysoev <igor@sysoev.ru> | 2004-08-27 15:40:59 +0000 |
| commit | 967fd637e08b6df4f635014fb572296372c89254 (patch) | |
| tree | 4f9dfe10ea18abb68a6f0aaf774f5f5e7c54cc3b /auto | |
| parent | 6d7332d02a043a92f2baf9bbe29949f3760a502c (diff) | |
| download | nginx-967fd637e08b6df4f635014fb572296372c89254.tar.gz nginx-967fd637e08b6df4f635014fb572296372c89254.tar.bz2 | |
nginx-0.0.10-2004-08-27-19:40:59 import
Diffstat (limited to 'auto')
| -rw-r--r-- | auto/modules | 5 | ||||
| -rw-r--r-- | auto/options | 2 | ||||
| -rw-r--r-- | auto/sources | 4 |
3 files changed, 11 insertions, 0 deletions
diff --git a/auto/modules b/auto/modules index ce6096791..a645070a1 100644 --- a/auto/modules +++ b/auto/modules @@ -87,6 +87,11 @@ if [ $HTTP_ACCESS = YES ]; then HTTP_SRCS="$HTTP_SRCS $HTTP_ACCESS_SRCS" fi +if [ $HTTP_USERID = YES ]; then + HTTP_MODULES="$HTTP_MODULES $HTTP_USERID_MODULE" + HTTP_SRCS="$HTTP_SRCS $HTTP_USERID_SRCS" +fi + if [ $HTTP_STATUS = YES ]; then have=NGX_HTTP_STATUS . auto/have HTTP_MODULES="$HTTP_MODULES $HTTP_STATUS_MODULE" diff --git a/auto/options b/auto/options index 5aea141d6..f7c19904c 100644 --- a/auto/options +++ b/auto/options @@ -34,6 +34,7 @@ HTTP_GZIP=YES HTTP_SSL=NO HTTP_SSI=YES HTTP_ACCESS=YES +HTTP_USERID=YES HTTP_STATUS=YES HTTP_REWRITE=YES HTTP_PROXY=YES @@ -92,6 +93,7 @@ do --without-http_gzip_module) HTTP_GZIP=NO ;; --without-http_ssi_module) HTTP_SSI=NO ;; --without-http_access_module) HTTP_ACCESS=NO ;; + --without-http_userid_module) HTTP_USERID=NO ;; --without-http_status_module) HTTP_STATUS=NO ;; --without-http_rewrite_module) HTTP_REWRITE=NO ;; --without-http_proxy_module) HTTP_PROXY=NO ;; diff --git a/auto/sources b/auto/sources index 6b66e51b1..0f278c76d 100644 --- a/auto/sources +++ b/auto/sources @@ -261,6 +261,10 @@ HTTP_ACCESS_MODULE=ngx_http_access_module HTTP_ACCESS_SRCS=src/http/modules/ngx_http_access_handler.c +HTTP_USERID_MODULE=ngx_http_userid_module +HTTP_USERID_SRCS=src/http/modules/ngx_http_userid_handler.c + + HTTP_STATUS_MODULE=ngx_http_status_module HTTP_STATUS_SRCS=src/http/modules/ngx_http_status_handler.c |
