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-07-15 00:07:58 +0400
committerIgor Sysoev <igor@sysoev.ru>2004-07-15 00:07:58 +0400
commit4aa888820d3f13a225ee6bdd596305ea3b4db6f4 (patch)
tree1b3c18e0a419a66123414a366588db23028ac5b1 /auto
parent7823cc3b0d263530ed4590d27ee4d1fe12dca0dc (diff)
nginx-0.0.7-2004-07-15-00:07:58 import
Diffstat (limited to 'auto')
-rw-r--r--auto/modules14
1 files changed, 6 insertions, 8 deletions
diff --git a/auto/modules b/auto/modules
index e03bd20ff..9447780f3 100644
--- a/auto/modules
+++ b/auto/modules
@@ -43,10 +43,10 @@ fi
# the filter order is important
# ngx_http_write_filter
-# ngx_http_ssl_filter
# ngx_http_header_filter
# ngx_http_chunked_filter
# ngx_http_range_header_filter
+# ngx_http_ssl_filter
# ngx_http_gzip_filter
# ngx_http_charset_filter
# ngx_http_ssi_filter
@@ -55,10 +55,13 @@ fi
# ngx_http_range_body_filter
# ngx_http_not_modified_filter
-HTTP_FILTER_MODULES="$HTTP_WRITE_FILTER_MODULE"
+HTTP_FILTER_MODULES="$HTTP_WRITE_FILTER_MODULE \
+ $HTTP_HEADER_FILTER_MODULE \
+ $HTTP_CHUNKED_FILTER_MODULE \
+ $HTTP_RANGE_HEADER_FILTER_MODULE"
if [ $HTTP_SSL = YES ]; then
- have=NGX_HTTP_SSL . auto/have
+ have=NGX_OPENSSL . auto/have
HTTP_FILTER_MODULES="$HTTP_FILTER_MODULES $HTTP_SSL_FILTER_MODULE"
HTTP_DEPS="$HTTP_DEPS $HTTP_SSL_DEPS"
HTTP_SRCS="$HTTP_SRCS $HTTP_SSL_SRCS"
@@ -66,11 +69,6 @@ if [ $HTTP_SSL = YES ]; then
CORE_LIBS="$CORE_LIBS -lssl -lcrypto"
fi
-HTTP_FILTER_MODULES="$HTTP_FILTER_MODULES \
- $HTTP_HEADER_FILTER_MODULE \
- $HTTP_CHUNKED_FILTER_MODULE \
- $HTTP_RANGE_HEADER_FILTER_MODULE"
-
if [ $HTTP_GZIP = YES ]; then
have=NGX_HTTP_GZIP . auto/have
USE_ZLIB=YES