comparison auto/cc/conf @ 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 74b1868dd3cd
children a39d1b793287
comparison
equal deleted inserted replaced
17:9acb68bb0698 18:6f8b0dc0f8dd
90 fi 90 fi
91 91
92 CFLAGS="$CFLAGS $NGX_CC_OPT" 92 CFLAGS="$CFLAGS $NGX_CC_OPT"
93 93
94 94
95 if [ "$PLATFORM" != win32 ]; then 95 if [ "$NGX_PLATFORM" != win32 ]; then
96 96
97 if test -n "$NGX_LD_OPT"; then 97 if test -n "$NGX_LD_OPT"; then
98 ngx_feature=--with-ld-opt=\"$NGX_LD_OPT\" 98 ngx_feature=--with-ld-opt=\"$NGX_LD_OPT\"
99 ngx_feature_name="DUMMY" 99 ngx_feature_name=
100 ngx_feature_run=no 100 ngx_feature_run=no
101 ngx_feature_incs= 101 ngx_feature_incs=
102 ngx_feature_libs= 102 ngx_feature_libs=
103 ngx_feature_test= 103 ngx_feature_test=
104 . auto/feature 104 . auto/feature
109 exit 1 109 exit 1
110 fi 110 fi
111 fi 111 fi
112 112
113 ngx_feature="gcc variadic macros" 113 ngx_feature="gcc variadic macros"
114 ngx_feature_name="HAVE_GCC_VARIADIC_MACROS" 114 ngx_feature_name="NGX_HAVE_GCC_VARIADIC_MACROS"
115 ngx_feature_run=yes 115 ngx_feature_run=yes
116 ngx_feature_incs="#include <stdio.h> 116 ngx_feature_incs="#include <stdio.h>
117 #define var(dummy, args...) sprintf(args)" 117 #define var(dummy, args...) sprintf(args)"
118 ngx_feature_libs= 118 ngx_feature_libs=
119 ngx_feature_test="char buf[30]; buf[0] = '0'; 119 ngx_feature_test="char buf[30]; buf[0] = '0';
121 if (buf[0] != '1') return 1" 121 if (buf[0] != '1') return 1"
122 . auto/feature 122 . auto/feature
123 123
124 124
125 ngx_feature="C99 variadic macros" 125 ngx_feature="C99 variadic macros"
126 ngx_feature_name="HAVE_C99_VARIADIC_MACROS" 126 ngx_feature_name="NGX_HAVE_C99_VARIADIC_MACROS"
127 ngx_feature_run=yes 127 ngx_feature_run=yes
128 ngx_feature_incs="#include <stdio.h> 128 ngx_feature_incs="#include <stdio.h>
129 #define var(dummy, ...) sprintf(__VA_ARGS__)" 129 #define var(dummy, ...) sprintf(__VA_ARGS__)"
130 ngx_feature_libs= 130 ngx_feature_libs=
131 ngx_feature_test="char buf[30]; buf[0] = '0'; 131 ngx_feature_test="char buf[30]; buf[0] = '0';
133 if (buf[0] != '1') return 1" 133 if (buf[0] != '1') return 1"
134 . auto/feature 134 . auto/feature
135 135
136 136
137 # ngx_feature="inline" 137 # ngx_feature="inline"
138 # ngx_feature_name="DUMMY" 138 # ngx_feature_name=
139 # ngx_feature_run=no 139 # ngx_feature_run=no
140 # ngx_feature_incs="int inline f(void) { return 1 }" 140 # ngx_feature_incs="int inline f(void) { return 1 }"
141 # ngx_feature_libs= 141 # ngx_feature_libs=
142 # ngx_feature_test= 142 # ngx_feature_test=
143 # . auto/feature 143 # . auto/feature