comparison auto/modules @ 2139:dad4423ef56a

ngx_http_xslt_filter_module
author Igor Sysoev <igor@sysoev.ru>
date Mon, 04 Aug 2008 14:48:15 +0000
parents e5ce4e2de846
children 69ef10ad7011
comparison
equal deleted inserted replaced
2138:fb3b084e7d42 2139:dad4423ef56a
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
125 if [ $HTTP_SSI = YES ]; then 130 if [ $HTTP_SSI = YES ]; then
126 have=NGX_HTTP_SSI . auto/have 131 have=NGX_HTTP_SSI . auto/have
127 HTTP_FILTER_MODULES="$HTTP_FILTER_MODULES $HTTP_SSI_FILTER_MODULE" 132 HTTP_FILTER_MODULES="$HTTP_FILTER_MODULES $HTTP_SSI_FILTER_MODULE"
128 HTTP_DEPS="$HTTP_DEPS $HTTP_SSI_DEPS" 133 HTTP_DEPS="$HTTP_DEPS $HTTP_SSI_DEPS"
129 HTTP_SRCS="$HTTP_SRCS $HTTP_SSI_SRCS" 134 HTTP_SRCS="$HTTP_SRCS $HTTP_SSI_SRCS"
135 fi
136
137 if [ $HTTP_XSLT = YES ]; then
138 USE_LIBXSLT=YES
139 HTTP_FILTER_MODULES="$HTTP_FILTER_MODULES $HTTP_XSLT_FILTER_MODULE"
140 HTTP_SRCS="$HTTP_SRCS $HTTP_XSLT_SRCS"
130 fi 141 fi
131 142
132 if [ $HTTP_SUB = YES ]; then 143 if [ $HTTP_SUB = YES ]; then
133 HTTP_FILTER_MODULES="$HTTP_FILTER_MODULES $HTTP_SUB_FILTER_MODULE" 144 HTTP_FILTER_MODULES="$HTTP_FILTER_MODULES $HTTP_SUB_FILTER_MODULE"
134 HTTP_SRCS="$HTTP_SRCS $HTTP_SUB_SRCS" 145 HTTP_SRCS="$HTTP_SRCS $HTTP_SUB_SRCS"