comparison auto/os/freebsd @ 112:408f195b3482 NGINX_0_3_3

nginx 0.3.3 *) Change: the "bl" and "af" parameters of the "listen" directive was renamed to the "backlog" and "accept_filter". *) Feature: the "rcvbuf" and "sndbuf" parameters of the "listen" directive. *) Change: the "$msec" log parameter does not require now the additional the gettimeofday() system call. *) Feature: the -t switch now tests the "listen" directives. *) Bugfix: if the invalid address was specified in the "listen" directive, then after the -HUP signal nginx left an open socket in the CLOSED state. *) Bugfix: the mime type may be incorrectly set to default value for index file with variable in the name; bug appeared in 0.3.0. *) Feature: the "timer_resolution" directive. *) Feature: the millisecond "$upstream_response_time" log parameter. *) Bugfix: a temporary file with client request body now is removed just after the response header was transferred to a client. *) Bugfix: OpenSSL 0.9.6 compatibility. *) Bugfix: the SSL certificate and key file paths could not be relative. *) Bugfix: the "ssl_prefer_server_ciphers" directive did not work in the ngx_imap_ssl_module. *) Bugfix: the "ssl_protocols" directive allowed to specify the single protocol only.
author Igor Sysoev <http://sysoev.ru>
date Wed, 19 Oct 2005 00:00:00 +0400
parents 5db440287648
children d8f5c91a5c07
comparison
equal deleted inserted replaced
111:a175b609c76d 112:408f195b3482
35 fi 35 fi
36 36
37 # sendfile 37 # sendfile
38 38
39 if [ $osreldate -gt 300007 ]; then 39 if [ $osreldate -gt 300007 ]; then
40 echo " + using sendfile()" 40 echo " + sendfile() found"
41 41
42 have=NGX_HAVE_SENDFILE . auto/have 42 have=NGX_HAVE_SENDFILE . auto/have
43 CORE_SRCS="$CORE_SRCS $FREEBSD_SENDFILE_SRCS" 43 CORE_SRCS="$CORE_SRCS $FREEBSD_SENDFILE_SRCS"
44 fi 44 fi
45 45
47 # kqueue 47 # kqueue
48 48
49 if [ \( $osreldate -lt 500000 -a $osreldate -ge 410000 \) \ 49 if [ \( $osreldate -lt 500000 -a $osreldate -ge 410000 \) \
50 -o $osreldate -ge 500011 ] 50 -o $osreldate -ge 500011 ]
51 then 51 then
52 echo " + using kqueue" 52 echo " + kqueue found"
53 53
54 have=NGX_HAVE_KQUEUE . auto/have 54 have=NGX_HAVE_KQUEUE . auto/have
55 have=NGX_HAVE_CLEAR_EVENT . auto/have 55 have=NGX_HAVE_CLEAR_EVENT . auto/have
56 EVENT_MODULES="$EVENT_MODULES $KQUEUE_MODULE" 56 EVENT_MODULES="$EVENT_MODULES $KQUEUE_MODULE"
57 CORE_SRCS="$CORE_SRCS $KQUEUE_SRCS" 57 CORE_SRCS="$CORE_SRCS $KQUEUE_SRCS"
65 # kqueue's NOTE_LAWAT 65 # kqueue's NOTE_LAWAT
66 66
67 if [ \( $version -lt 500000 -a $version -ge 430000 \) \ 67 if [ \( $version -lt 500000 -a $version -ge 430000 \) \
68 -o $version -ge 500018 ] 68 -o $version -ge 500018 ]
69 then 69 then
70 echo " + using kqueue's NOTE_LOWAT" 70 echo " + kqueue's NOTE_LOWAT found"
71 have=NGX_HAVE_LOWAT_EVENT . auto/have 71 have=NGX_HAVE_LOWAT_EVENT . auto/have
72 fi
73
74 # kqueue's EVFILT_TIMER
75
76 if [ \( $version -lt 500000 -a $version -ge 440001 \) \
77 -o $version -ge 500023 ]
78 then
79 echo " + kqueue's EVFILT_TIMER found"
80 have=NGX_HAVE_TIMER_EVENT . auto/have
72 fi 81 fi
73 82
74 83
75 if [ $USE_THREADS = "rfork" ]; then 84 if [ $USE_THREADS = "rfork" ]; then
76 85