comparison auto/options @ 10:46833bd150cb NGINX_0_1_5

nginx 0.1.5 *) Bugfix: on Solaris and Linux there may be too many "recvmsg() returned not enough data" alerts. *) Bugfix: there were the "writev() failed (22: Invalid argument)" errors on Solaris in proxy mode without sendfile. On other platforms that do not support sendfile at all the process got caught in an endless loop. *) Bugfix: segmentation fault on Solaris in proxy mode and using sendfile. *) Bugfix: segmentation fault on Solaris. *) Bugfix: on-line upgrade did not work on Linux. *) Bugfix: the ngx_http_autoindex_module module did not escape the spaces, the quotes, and the percent signs in the directory listing. *) Change: the decrease of the copy operations. *) Feature: the userid_p3p directive.
author Igor Sysoev <http://sysoev.ru>
date Thu, 11 Nov 2004 00:00:00 +0300
parents 80ba094c6b3e
children 74b1868dd3cd
comparison
equal deleted inserted replaced
9:77eee314ddbd 10:46833bd150cb
23 CPU=NO 23 CPU=NO
24 24
25 TEST_BUILD_DEVPOLL=NO 25 TEST_BUILD_DEVPOLL=NO
26 TEST_BUILD_EPOLL=NO 26 TEST_BUILD_EPOLL=NO
27 TEST_BUILD_RTSIG=NO 27 TEST_BUILD_RTSIG=NO
28
29 PLATFORM=
30 NGX_WINE=
28 31
29 EVENT_FOUND=NO 32 EVENT_FOUND=NO
30 33
31 EVENT_RTSIG=NO 34 EVENT_RTSIG=NO
32 EVENT_SELECT=NO 35 EVENT_SELECT=NO
193 HTTP_REWRITE=NO 196 HTTP_REWRITE=NO
194 HTTP_PROXY=NO 197 HTTP_PROXY=NO
195 fi 198 fi
196 199
197 200
198 if [ ".$PLATFORM" = ".win32" -a $EVENT_POLL = YES ]; then 201 if [ ".$PLATFORM" = ".win32" ]; then
199 EVENT_POLL=NO 202 NGX_WINE=$WINE
200 echo "$0: warning: --with-poll_module option is ignored for win32"
201 fi 203 fi
202 204
203 205
204 if test -z "$PREFIX"; then 206 if test -z "$PREFIX"; then
205 PREFIX=/usr/local/nginx 207 PREFIX=/usr/local/nginx
209 if test -z "$NGX_GROUP"; then 211 if test -z "$NGX_GROUP"; then
210 NGX_GROUP=NGX_USER 212 NGX_GROUP=NGX_USER
211 fi 213 fi
212 214
213 215
214 if test -z "$NGX_USER"; then
215 NGX_USER=nobody
216 NGX_GROUP=nobody
217 fi
218
219
220 case ".$SBIN_PATH" in 216 case ".$SBIN_PATH" in
221 ./*) 217 ./*)
222 ;; 218 ;;
223 219
224 .) 220 .)