comparison auto/feature @ 18:6f8b0dc0f8dd NGINX_0_1_9

nginx 0.1.9 *) Bugfix: the proxied request was sent without arguments if the request contains "//", "/./", "/../" or "%XX". *) Bugfix: the large compressed responses may be transferred not completely. *) Bugfix: the files bigger than 2G was not transferred on Linux that does not support sendfile64(). *) Bugfix: while the build configuration on Linux the --with-poll_module parameter was required; bug appeared in 0.1.8.
author Igor Sysoev <http://sysoev.ru>
date Thu, 25 Nov 2004 00:00:00 +0300
parents 46833bd150cb
children 91372f004adf
comparison
equal deleted inserted replaced
17:9acb68bb0698 18:6f8b0dc0f8dd
12 END 12 END
13 13
14 ngx_found=no 14 ngx_found=no
15 15
16 if test -n "$ngx_feature_name"; then 16 if test -n "$ngx_feature_name"; then
17 ngx_have_feature=`echo NGX_$ngx_feature_name | tr '[a-z]' '[A-Z]'` 17 ngx_have_feature=`echo $ngx_feature_name | tr '[a-z]' '[A-Z]'`
18 # STUB
19 ngx_have_feature0=`echo HAVE_$ngx_feature_name | tr '[a-z]' '[A-Z]'`
20 fi 18 fi
21 19
22 cat << END > $NGX_AUTOTEST.c 20 cat << END > $NGX_AUTOTEST.c
23 21
24 #include <sys/types.h> 22 #include <sys/types.h>
49 47
50 if test -n "$ngx_feature_name"; then 48 if test -n "$ngx_feature_name"; then
51 have=$ngx_have_feature . auto/have 49 have=$ngx_have_feature . auto/have
52 fi 50 fi
53 51
54 #STUB
55 if test -n "$ngx_feature_name"; then
56 have=$ngx_have_feature0 . auto/have
57 fi
58
59 else 52 else
60 echo " found but is not working" 53 echo " found but is not working"
61 fi 54 fi
62 55
63 else 56 else
64 echo " found" 57 echo " found"
65 ngx_found=yes 58 ngx_found=yes
66 59
67 if test -n "$ngx_feature_name"; then 60 if test -n "$ngx_feature_name"; then
68 have=$ngx_have_feature . auto/have 61 have=$ngx_have_feature . auto/have
69 fi
70
71 #STUB
72 if test -n "$ngx_feature_name"; then
73 have=$ngx_have_feature0 . auto/have
74 fi 62 fi
75 63
76 fi 64 fi
77 65
78 else 66 else