Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nginx/nginx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/auto
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2004-08-29 07:55:41 +0400
committerIgor Sysoev <igor@sysoev.ru>2004-08-29 07:55:41 +0400
commita7c4a2a6f898a0b3add9f36e56288734414a12f7 (patch)
treebd7fa2cd0e26cd974df02b2788db000402d7d366 /auto
parent967fd637e08b6df4f635014fb572296372c89254 (diff)
nginx-0.0.10-2004-08-29-07:55:41 import
Diffstat (limited to 'auto')
-rw-r--r--auto/modules10
-rw-r--r--auto/options2
-rw-r--r--auto/sources8
3 files changed, 10 insertions, 10 deletions
diff --git a/auto/modules b/auto/modules
index a645070a1..be76fd83a 100644
--- a/auto/modules
+++ b/auto/modules
@@ -79,6 +79,11 @@ if [ $HTTP_SSI = YES ]; then
HTTP_SRCS="$HTTP_SRCS $HTTP_SSI_SRCS"
fi
+if [ $HTTP_USERID = YES ]; then
+ HTTP_FILTER_MODULES="$HTTP_FILTER_MODULES $HTTP_USERID_FILTER_MODULE"
+ HTTP_SRCS="$HTTP_SRCS $HTTP_USERID_SRCS"
+fi
+
HTTP_MODULES="$HTTP_MODULES $HTTP_STATIC_MODULE $HTTP_INDEX_MODULE"
if [ $HTTP_ACCESS = YES ]; then
@@ -87,11 +92,6 @@ 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 f7c19904c..c88e77fc3 100644
--- a/auto/options
+++ b/auto/options
@@ -92,8 +92,8 @@ do
--without-http_charset_module) HTTP_CHARSET=NO ;;
--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_access_module) HTTP_ACCESS=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 0f278c76d..8cbef9e42 100644
--- a/auto/sources
+++ b/auto/sources
@@ -257,12 +257,12 @@ HTTP_SSI_FILTER_MODULE=ngx_http_ssi_filter_module
HTTP_SSI_SRCS=src/http/modules/ngx_http_ssi_filter.c
-HTTP_ACCESS_MODULE=ngx_http_access_module
-HTTP_ACCESS_SRCS=src/http/modules/ngx_http_access_handler.c
+HTTP_USERID_FILTER_MODULE=ngx_http_userid_filter_module
+HTTP_USERID_SRCS=src/http/modules/ngx_http_userid_filter.c
-HTTP_USERID_MODULE=ngx_http_userid_module
-HTTP_USERID_SRCS=src/http/modules/ngx_http_userid_handler.c
+HTTP_ACCESS_MODULE=ngx_http_access_module
+HTTP_ACCESS_SRCS=src/http/modules/ngx_http_access_handler.c
HTTP_STATUS_MODULE=ngx_http_status_module