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-06-24 20:07:04 +0400
committerIgor Sysoev <igor@sysoev.ru>2004-06-24 20:07:04 +0400
commit59f3aa3a9baeab8c8277332e75a83f134d1e026a (patch)
treeb9f4b4b2b84ec0fb29b12a901b5704abbfe5eb06 /auto
parentc83f683553cb76dcc9b7311495383edbacccf06d (diff)
nginx-0.0.7-2004-06-24-20:07:04 import
Diffstat (limited to 'auto')
-rw-r--r--auto/modules6
-rw-r--r--auto/options2
-rw-r--r--auto/sources4
3 files changed, 12 insertions, 0 deletions
diff --git a/auto/modules b/auto/modules
index cd07cfc4e..55e10a7c4 100644
--- a/auto/modules
+++ b/auto/modules
@@ -66,6 +66,12 @@ fi
HTTP_MODULES="$HTTP_MODULES $HTTP_STATIC_MODULE $HTTP_INDEX_MODULE"
+if [ $HTTP_ACCESS = YES ]; then
+ have=NGX_HTTP_ACCESS . auto/have
+ HTTP_MODULES="$HTTP_MODULES $HTTP_ACCESS_MODULE"
+ HTTP_SRCS="$HTTP_SRCS $HTTP_ACCESS_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 7a6e36dfd..a2e01a2b7 100644
--- a/auto/options
+++ b/auto/options
@@ -32,6 +32,7 @@ USE_THREADS=NO
HTTP_CHARSET=YES
HTTP_GZIP=YES
HTTP_SSI=YES
+HTTP_ACCESS=YES
HTTP_STATUS=YES
HTTP_REWRITE=YES
HTTP_PROXY=YES
@@ -85,6 +86,7 @@ do
--without-http_charset_module) HTTP_CHARSET=NO ;;
--without-http_ssi_module) HTTP_SSI=NO ;;
--without-http_gzip_module) HTTP_GZIP=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 6801f27f2..4827f154b 100644
--- a/auto/sources
+++ b/auto/sources
@@ -248,6 +248,10 @@ 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_STATUS_MODULE=ngx_http_status_module
HTTP_STATUS_SRCS=src/http/modules/ngx_http_status_handler.c