comparison auto/feature @ 168:3314be145cb9 NGINX_0_3_31

nginx 0.3.31 *) Change: now nginx passes the malformed proxied backend responses. *) Feature: the "listen" directives support the address in the "*:port" form. *) Feature: the EVFILER_TIMER support in MacOSX 10.4. *) Workaround: for MacOSX 64-bit kernel kqueue millisecond timeout bug. Thanks to Andrei Nigmatulin. *) Bugfix: if there were several "listen" directives listening one various addresses inside one server, then server names like "*.domain.tld" worked for first address only; bug appeared in 0.3.18. *) Bugfix: if the HTTPS protocol was used in the "proxy_pass" directive and the request body was in temporarily file then the request was not transferred. *) Bugfix: perl 5.8.8 compatibility.
author Igor Sysoev <http://sysoev.ru>
date Fri, 10 Mar 2006 00:00:00 +0300
parents 91372f004adf
children 003bd800ec2a
comparison
equal deleted inserted replaced
167:544cb5cba207 168:3314be145cb9
37 eval "$ngx_test >> $NGX_AUTOCONF_ERR 2>&1" 37 eval "$ngx_test >> $NGX_AUTOCONF_ERR 2>&1"
38 38
39 39
40 if [ -x $NGX_AUTOTEST ]; then 40 if [ -x $NGX_AUTOTEST ]; then
41 41
42 if [ $ngx_feature_run = yes ]; then 42 case "$ngx_feature_run" in
43 43
44 if $NGX_AUTOTEST 2>&1 > /dev/null; then 44 yes)
45 echo " found" 45 if $NGX_AUTOTEST 2>&1 > /dev/null; then
46 ngx_found=yes 46 echo " found"
47 ngx_found=yes
47 48
48 if test -n "$ngx_feature_name"; then 49 if test -n "$ngx_feature_name"; then
49 have=$ngx_have_feature . auto/have 50 have=$ngx_have_feature . auto/have
50 fi 51 fi
51 52
52 else 53 else
53 echo " found but is not working" 54 echo " found but is not working"
54 fi 55 fi
56 ;;
55 57
56 else 58 bug)
57 echo " found" 59 if $NGX_AUTOTEST 2>&1 > /dev/null; then
58 ngx_found=yes 60 echo " not found"
59 61
60 if test -n "$ngx_feature_name"; then 62 else
61 have=$ngx_have_feature . auto/have 63 echo " found"
62 fi 64 ngx_found=yes
63 65
64 fi 66 if test -n "$ngx_feature_name"; then
67 have=$ngx_have_feature . auto/have
68 fi
69 fi
70 ;;
71
72 *)
73 echo " found"
74 ngx_found=yes
75
76 if test -n "$ngx_feature_name"; then
77 have=$ngx_have_feature . auto/have
78 fi
79 ;;
80
81 esac
65 82
66 else 83 else
67 echo " not found" 84 echo " not found"
68 85
69 echo "----------" >> $NGX_AUTOCONF_ERR 86 echo "----------" >> $NGX_AUTOCONF_ERR