summaryrefslogtreecommitdiffhomepage
path: root/auto
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2007-04-19 17:54:23 +0000
committerIgor Sysoev <igor@sysoev.ru>2007-04-19 17:54:23 +0000
commitd9bb8e38947494f45a133064b4a1a11a56ba13d2 (patch)
tree2d11f5dc0c702acad3e4b3138c99fd1939eb4178 /auto
parentad490864def09040fb1513573d6ca51acba0ef59 (diff)
downloadnginx-d9bb8e38947494f45a133064b4a1a11a56ba13d2.tar.gz
nginx-d9bb8e38947494f45a133064b4a1a11a56ba13d2.tar.bz2
ngx_http_sub_filter_module
Diffstat (limited to 'auto')
-rw-r--r--auto/modules5
-rw-r--r--auto/options3
-rw-r--r--auto/sources4
3 files changed, 12 insertions, 0 deletions
diff --git a/auto/modules b/auto/modules
index dfd6f1220..ee5462dc4 100644
--- a/auto/modules
+++ b/auto/modules
@@ -129,6 +129,11 @@ if [ $HTTP_SSI = YES ]; then
HTTP_SRCS="$HTTP_SRCS $HTTP_SSI_SRCS"
fi
+if [ $HTTP_SUB = YES ]; then
+ HTTP_FILTER_MODULES="$HTTP_FILTER_MODULES $HTTP_SUB_FILTER_MODULE"
+ HTTP_SRCS="$HTTP_SRCS $HTTP_SUB_SRCS"
+fi
+
if [ $HTTP_ADDITION = YES ]; then
HTTP_FILTER_MODULES="$HTTP_FILTER_MODULES $HTTP_ADDITION_FILTER_MODULE"
HTTP_SRCS="$HTTP_SRCS $HTTP_ADDITION_SRCS"
diff --git a/auto/options b/auto/options
index 379bb2318..6a48076c5 100644
--- a/auto/options
+++ b/auto/options
@@ -53,6 +53,7 @@ HTTP_SSL=NO
HTTP_SSI=YES
HTTP_POSTPONE=NO
HTTP_REALIP=NO
+HTTP_SUB=NO
HTTP_ADDITION=NO
HTTP_DAV=NO
HTTP_ACCESS=YES
@@ -152,6 +153,7 @@ do
--with-http_ssl_module) HTTP_SSL=YES ;;
--with-http_realip_module) HTTP_REALIP=YES ;;
--with-http_addition_module) HTTP_ADDITION=YES ;;
+ --with-http_sub_module) HTTP_SUB=YES ;;
--with-http_dav_module) HTTP_DAV=YES ;;
--with-http_flv_module) HTTP_FLV=YES ;;
@@ -259,6 +261,7 @@ cat << END
--with-http_ssl_module enable ngx_http_ssl_module
--with-http_realip_module enable ngx_http_realip_module
--with-http_addition_module enable ngx_http_addition_module
+ --with-http_sub_module enable ngx_http_sub_module
--with-http_dav_module enable ngx_http_dav_module
--with-http_flv_module enable ngx_http_flv_module
diff --git a/auto/sources b/auto/sources
index 0632d39f8..44d82ee02 100644
--- a/auto/sources
+++ b/auto/sources
@@ -317,6 +317,10 @@ HTTP_SSI_DEPS=src/http/modules/ngx_http_ssi_filter_module.h
HTTP_SSI_SRCS=src/http/modules/ngx_http_ssi_filter_module.c
+HTTP_SUB_FILTER_MODULE=ngx_http_sub_filter_module
+HTTP_SUB_SRCS=src/http/modules/ngx_http_sub_filter_module.c
+
+
HTTP_USERID_FILTER_MODULE=ngx_http_userid_filter_module
HTTP_USERID_SRCS=src/http/modules/ngx_http_userid_filter_module.c