comparison auto/feature @ 236:c982febb7588 NGINX_0_4_3

nginx 0.4.3 *) Change: now the 499 error could not be redirected using an "error_page" directive. *) Feature: the Solaris 10 event ports support. *) Feature: the ngx_http_browser_module. *) Bugfix: a segmentation fault may occur while redirecting the 400 error to the proxied server using an "proxy_pass" directive. *) Bugfix: a segmentation fault occurred if an unix domain socket was used in an "proxy_pass" directive; bug appeared in 0.3.47. *) Bugfix: SSI did work with memcached and nonbuffered responses. *) Workaround: of the Sun Studio PAUSE hardware capability bug.
author Igor Sysoev <http://sysoev.ru>
date Tue, 26 Sep 2006 00:00:00 +0400
parents 003bd800ec2a
children 6ae1357b7b7c
comparison
equal deleted inserted replaced
235:f622c719b711 236:c982febb7588
41 if [ -x $NGX_AUTOTEST ]; then 41 if [ -x $NGX_AUTOTEST ]; then
42 42
43 case "$ngx_feature_run" in 43 case "$ngx_feature_run" in
44 44
45 yes) 45 yes)
46 if $NGX_AUTOTEST 2>&1 > /dev/null; then 46 # /bin/sh is used to intercept "Killed" or "Abort trap" messages
47 if /bin/sh -c $NGX_AUTOTEST >/dev/null 2>&1; then
47 echo " found" 48 echo " found"
48 ngx_found=yes 49 ngx_found=yes
49 50
50 if test -n "$ngx_feature_name"; then 51 if test -n "$ngx_feature_name"; then
51 have=$ngx_have_feature . auto/have 52 have=$ngx_have_feature . auto/have
55 echo " found but is not working" 56 echo " found but is not working"
56 fi 57 fi
57 ;; 58 ;;
58 59
59 bug) 60 bug)
60 if $NGX_AUTOTEST 2>&1 > /dev/null; then 61 # /bin/sh is used to intercept "Killed" or "Abort trap" messages
62 if /bin/sh -c $NGX_AUTOTEST >/dev/null 2>&1; then
61 echo " not found" 63 echo " not found"
62 64
63 else 65 else
64 echo " found" 66 echo " found"
65 ngx_found=yes 67 ngx_found=yes