comparison auto/cc/name @ 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 dad2fe8ecf08
children df17fbafec8f
comparison
equal deleted inserted replaced
111:a175b609c76d 112:408f195b3482
9 if `$NGX_WINE $CC -v 2>&1 \ 9 if `$NGX_WINE $CC -v 2>&1 \
10 | grep '^Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 13' \ 10 | grep '^Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 13' \
11 2>&1 >/dev/null`; then 11 2>&1 >/dev/null`; then
12 12
13 NGX_CC_NAME=msvc7 13 NGX_CC_NAME=msvc7
14 echo " using Microsoft Visual C++ 7 compiler" 14 echo " Microsoft Visual C++ 7 compiler"
15 15
16 else 16 else
17 NGX_CC_NAME=msvc 17 NGX_CC_NAME=msvc
18 echo " using Microsoft Visual C++ compiler" 18 echo " Microsoft Visual C++ compiler"
19 fi 19 fi
20 20
21 else 21 else
22 if [ $CC = wcl386 ]; then 22 if [ $CC = wcl386 ]; then
23 NGX_CC_NAME=owc 23 NGX_CC_NAME=owc
24 echo " using Open Watcom C compiler" 24 echo " Open Watcom C compiler"
25 25
26 else 26 else
27 if [ $CC = bcc32 ]; then 27 if [ $CC = bcc32 ]; then
28 NGX_CC_NAME=bcc 28 NGX_CC_NAME=bcc
29 echo " using Borland C++ compiler" 29 echo " Borland C++ compiler"
30 30
31 else 31 else
32 if `$CC -v 2>&1 | grep 'gcc version' 2>&1 >/dev/null`; then 32 if `$CC -v 2>&1 | grep 'gcc version' 2>&1 >/dev/null`; then
33 NGX_CC_NAME=gcc 33 NGX_CC_NAME=gcc
34 echo " using GNU C compiler" 34 echo " GNU C compiler"
35 35
36 else 36 else
37 if `$CC -V 2>&1 | grep '^Intel(R) C' 2>&1 >/dev/null`; then 37 if `$CC -V 2>&1 | grep '^Intel(R) C' 2>&1 >/dev/null`; then
38 NGX_CC_NAME=icc 38 NGX_CC_NAME=icc
39 echo " using Intel C++ compiler" 39 echo " Intel C++ compiler"
40 40
41 else 41 else
42 if `$CC -V 2>&1 | grep 'Sun C' 2>&1 >/dev/null`; then 42 if `$CC -V 2>&1 | grep 'Sun C' 2>&1 >/dev/null`; then
43 NGX_CC_NAME=sunc 43 NGX_CC_NAME=sunc
44 echo " using Sun C compiler" 44 echo " Sun C compiler"
45 45
46 else 46 else
47 if `$CC -V 2>&1 | grep '^Compaq C' 2>&1 >/dev/null`; then 47 if `$CC -V 2>&1 | grep '^Compaq C' 2>&1 >/dev/null`; then
48 NGX_CC_NAME=ccc 48 NGX_CC_NAME=ccc
49 echo " using Compaq C compiler" 49 echo " Compaq C compiler"
50 50
51 else 51 else
52 if `$CC -V 2>&1 | grep '^aCC: ' 2>&1 >/dev/null`; then 52 if `$CC -V 2>&1 | grep '^aCC: ' 2>&1 >/dev/null`; then
53 NGX_CC_NAME=acc 53 NGX_CC_NAME=acc
54 echo " using HP aC++ compiler" 54 echo " HP aC++ compiler"
55 55
56 else 56 else
57 NGX_CC_NAME=unknown 57 NGX_CC_NAME=unknown
58 echo " unknown" 58 echo " unknown"
59 59