comparison auto/modules @ 396:77df96611112

Merge with current.
author Maxim Dounin <mdounin@mdounin.ru>
date Tue, 05 Aug 2008 02:12:51 +0400
parents 1d9bef53cd8e 34fb3a573548
children 5c4b468a4f90
comparison
equal deleted inserted replaced
391:1d9bef53cd8e 396:77df96611112
74 HTTP_POSTPONE=YES 74 HTTP_POSTPONE=YES
75 fi 75 fi
76 76
77 77
78 # the module order is important 78 # the module order is important
79 # ngx_http_static_module
80 # ngx_http_gzip_static_module
81 # ngx_http_dav_module
79 # ngx_http_autoindex_module 82 # ngx_http_autoindex_module
80 # ngx_http_index_module 83 # ngx_http_index_module
81 # 84 #
82 # ngx_http_access_module 85 # ngx_http_access_module
83 # ngx_http_realip_module 86 # ngx_http_realip_module
90 # ngx_http_range_header_filter 93 # ngx_http_range_header_filter
91 # ngx_http_gzip_filter 94 # ngx_http_gzip_filter
92 # ngx_http_postpone_filter 95 # ngx_http_postpone_filter
93 # ngx_http_charset_filter 96 # ngx_http_charset_filter
94 # ngx_http_ssi_filter 97 # ngx_http_ssi_filter
98 # ngx_http_xslt_filter
99 # ngx_http_sub_filter
95 # ngx_http_addition_filter 100 # ngx_http_addition_filter
96 # ngx_http_userid_filter 101 # ngx_http_userid_filter
97 # ngx_http_headers_filter 102 # ngx_http_headers_filter
98 # ngx_http_copy_filter 103 # ngx_http_copy_filter
99 # ngx_http_range_body_filter 104 # ngx_http_range_body_filter
127 if [ $HTTP_SSI = YES ]; then 132 if [ $HTTP_SSI = YES ]; then
128 have=NGX_HTTP_SSI . auto/have 133 have=NGX_HTTP_SSI . auto/have
129 HTTP_FILTER_MODULES="$HTTP_FILTER_MODULES $HTTP_SSI_FILTER_MODULE" 134 HTTP_FILTER_MODULES="$HTTP_FILTER_MODULES $HTTP_SSI_FILTER_MODULE"
130 HTTP_DEPS="$HTTP_DEPS $HTTP_SSI_DEPS" 135 HTTP_DEPS="$HTTP_DEPS $HTTP_SSI_DEPS"
131 HTTP_SRCS="$HTTP_SRCS $HTTP_SSI_SRCS" 136 HTTP_SRCS="$HTTP_SRCS $HTTP_SSI_SRCS"
137 fi
138
139 if [ $HTTP_XSLT = YES ]; then
140 USE_LIBXSLT=YES
141 HTTP_FILTER_MODULES="$HTTP_FILTER_MODULES $HTTP_XSLT_FILTER_MODULE"
142 HTTP_SRCS="$HTTP_SRCS $HTTP_XSLT_SRCS"
132 fi 143 fi
133 144
134 if [ $HTTP_SUB = YES ]; then 145 if [ $HTTP_SUB = YES ]; then
135 HTTP_FILTER_MODULES="$HTTP_FILTER_MODULES $HTTP_SUB_FILTER_MODULE" 146 HTTP_FILTER_MODULES="$HTTP_FILTER_MODULES $HTTP_SUB_FILTER_MODULE"
136 HTTP_SRCS="$HTTP_SRCS $HTTP_SUB_SRCS" 147 HTTP_SRCS="$HTTP_SRCS $HTTP_SUB_SRCS"