comparison auto/cc/conf @ 258:6ae1357b7b7c NGINX_0_4_14

nginx 0.4.14 *) Feature: the "proxy_pass_error_message" directive in IMAP/POP3 proxy. *) Feature: now configure detects system PCRE library on FreeBSD, Linux, and NetBSD. *) Bugfix: ngx_http_perl_module did not work with perl built with the threads support; bug appeared in 0.3.38. *) Bugfix: ngx_http_perl_module did not work if perl was called recursively. *) Bugfix: nginx ignored a host name in an request line. *) Bugfix: a worker process may got caught in an endless loop, if a FastCGI server sent too many data to the stderr. *) Bugfix: the $upstream_response_time variable may be negative if the system time was changed backward. *) Bugfix: the "Auth-Login-Attempt" parameter was not sent to IMAP/POP3 proxy authentication server when POP3 was used. *) Bugfix: a segmentation fault might occur if connect to IMAP/POP3 proxy authentication server failed.
author Igor Sysoev <http://sysoev.ru>
date Mon, 27 Nov 2006 00:00:00 +0300
parents d25a1d6034f1
children 5c576ea5dbd9
comparison
equal deleted inserted replaced
257:0e566ee1bcd5 258:6ae1357b7b7c
111 if test -n "$NGX_LD_OPT"; then 111 if test -n "$NGX_LD_OPT"; then
112 ngx_feature=--with-ld-opt=\"$NGX_LD_OPT\" 112 ngx_feature=--with-ld-opt=\"$NGX_LD_OPT\"
113 ngx_feature_name= 113 ngx_feature_name=
114 ngx_feature_run=no 114 ngx_feature_run=no
115 ngx_feature_incs= 115 ngx_feature_incs=
116 ngx_feature_path=
116 ngx_feature_libs= 117 ngx_feature_libs=
117 ngx_feature_test= 118 ngx_feature_test=
118 . auto/feature 119 . auto/feature
119 120
120 if [ $ngx_found = no ]; then 121 if [ $ngx_found = no ]; then
127 ngx_feature="gcc variadic macros" 128 ngx_feature="gcc variadic macros"
128 ngx_feature_name="NGX_HAVE_GCC_VARIADIC_MACROS" 129 ngx_feature_name="NGX_HAVE_GCC_VARIADIC_MACROS"
129 ngx_feature_run=yes 130 ngx_feature_run=yes
130 ngx_feature_incs="#include <stdio.h> 131 ngx_feature_incs="#include <stdio.h>
131 #define var(dummy, args...) sprintf(args)" 132 #define var(dummy, args...) sprintf(args)"
133 ngx_feature_path=
132 ngx_feature_libs= 134 ngx_feature_libs=
133 ngx_feature_test="char buf[30]; buf[0] = '0'; 135 ngx_feature_test="char buf[30]; buf[0] = '0';
134 var(0, buf, \"%d\", 1); 136 var(0, buf, \"%d\", 1);
135 if (buf[0] != '1') return 1" 137 if (buf[0] != '1') return 1"
136 . auto/feature 138 . auto/feature
142 ngx_feature="C99 variadic macros" 144 ngx_feature="C99 variadic macros"
143 ngx_feature_name="NGX_HAVE_C99_VARIADIC_MACROS" 145 ngx_feature_name="NGX_HAVE_C99_VARIADIC_MACROS"
144 ngx_feature_run=yes 146 ngx_feature_run=yes
145 ngx_feature_incs="#include <stdio.h> 147 ngx_feature_incs="#include <stdio.h>
146 #define var(dummy, ...) sprintf(__VA_ARGS__)" 148 #define var(dummy, ...) sprintf(__VA_ARGS__)"
149 ngx_feature_path=
147 ngx_feature_libs= 150 ngx_feature_libs=
148 ngx_feature_test="char buf[30]; buf[0] = '0'; 151 ngx_feature_test="char buf[30]; buf[0] = '0';
149 var(0, buf, \"%d\", 1); 152 var(0, buf, \"%d\", 1);
150 if (buf[0] != '1') return 1" 153 if (buf[0] != '1') return 1"
151 . auto/feature 154 . auto/feature
154 157
155 # ngx_feature="inline" 158 # ngx_feature="inline"
156 # ngx_feature_name= 159 # ngx_feature_name=
157 # ngx_feature_run=no 160 # ngx_feature_run=no
158 # ngx_feature_incs="int inline f(void) { return 1 }" 161 # ngx_feature_incs="int inline f(void) { return 1 }"
162 # ngx_feature_path=
159 # ngx_feature_libs= 163 # ngx_feature_libs=
160 # ngx_feature_test= 164 # ngx_feature_test=
161 # . auto/feature 165 # . auto/feature
162 # 166 #
163 # if [ $ngx_found = yes ]; then 167 # if [ $ngx_found = yes ]; then