comparison auto/modules @ 686:2e8a942c8872 NGINX_1_3_6

nginx 1.3.6 *) Feature: the ngx_http_gunzip_filter_module. *) Feature: the "memcached_gzip_flag" directive. *) Feature: the "always" parameter of the "gzip_static" directive. *) Bugfix: in the "limit_req" directive; the bug had appeared in 1.1.14. Thanks to Charles Chen. *) Bugfix: nginx could not be built by gcc 4.7 with -O2 optimization if the --with-ipv6 option was used.
author Igor Sysoev <http://sysoev.ru>
date Wed, 12 Sep 2012 00:00:00 +0400
parents 981b4c44593b
children
comparison
equal deleted inserted replaced
685:0a9f545d4f4b 686:2e8a942c8872
107 # ngx_http_charset_filter 107 # ngx_http_charset_filter
108 # ngx_http_xslt_filter 108 # ngx_http_xslt_filter
109 # ngx_http_image_filter 109 # ngx_http_image_filter
110 # ngx_http_sub_filter 110 # ngx_http_sub_filter
111 # ngx_http_addition_filter 111 # ngx_http_addition_filter
112 # ngx_http_gunzip_filter
112 # ngx_http_userid_filter 113 # ngx_http_userid_filter
113 # ngx_http_headers_filter 114 # ngx_http_headers_filter
114 # ngx_http_copy_filter 115 # ngx_http_copy_filter
115 # ngx_http_range_body_filter 116 # ngx_http_range_body_filter
116 # ngx_http_not_modified_filter 117 # ngx_http_not_modified_filter
162 fi 163 fi
163 164
164 if [ $HTTP_ADDITION = YES ]; then 165 if [ $HTTP_ADDITION = YES ]; then
165 HTTP_FILTER_MODULES="$HTTP_FILTER_MODULES $HTTP_ADDITION_FILTER_MODULE" 166 HTTP_FILTER_MODULES="$HTTP_FILTER_MODULES $HTTP_ADDITION_FILTER_MODULE"
166 HTTP_SRCS="$HTTP_SRCS $HTTP_ADDITION_SRCS" 167 HTTP_SRCS="$HTTP_SRCS $HTTP_ADDITION_SRCS"
168 fi
169
170 if [ $HTTP_GUNZIP = YES ]; then
171 have=NGX_HTTP_GZIP . auto/have
172 USE_ZLIB=YES
173 HTTP_FILTER_MODULES="$HTTP_FILTER_MODULES $HTTP_GUNZIP_FILTER_MODULE"
174 HTTP_SRCS="$HTTP_SRCS $HTTP_GUNZIP_SRCS"
167 fi 175 fi
168 176
169 if [ $HTTP_USERID = YES ]; then 177 if [ $HTTP_USERID = YES ]; then
170 HTTP_FILTER_MODULES="$HTTP_FILTER_MODULES $HTTP_USERID_FILTER_MODULE" 178 HTTP_FILTER_MODULES="$HTTP_FILTER_MODULES $HTTP_USERID_FILTER_MODULE"
171 HTTP_SRCS="$HTTP_SRCS $HTTP_USERID_SRCS" 179 HTTP_SRCS="$HTTP_SRCS $HTTP_USERID_SRCS"