comparison auto/cc/name @ 346:05693816539c NGINX_0_6_17

nginx 0.6.17 *) Feature: the "If-Range" request header line support. Thanks to Alexander V. Inyukhin. *) Bugfix: URL double escaping in a redirect of the "msie_refresh" directive; bug appeared in 0.6.4. *) Bugfix: the "autoindex" directive did not work with the "alias /" directive. *) Bugfix: a segmentation fault might occur in worker process if subrequests were used. *) Bugfix: the big responses may be transferred truncated if SSL and gzip were used. *) Bugfix: the $status variable was equal to 0 if a proxied server returned response in HTTP/0.9 version.
author Igor Sysoev <http://sysoev.ru>
date Thu, 15 Nov 2007 00:00:00 +0300
parents 6eb1e38f0f1f
children
comparison
equal deleted inserted replaced
345:4279bc4cdec6 346:05693816539c
23 fi 23 fi
24 24
25 25
26 if [ "$CC" = cl ]; then 26 if [ "$CC" = cl ]; then
27 if `$NGX_WINE $CC -v 2>&1 \ 27 if `$NGX_WINE $CC -v 2>&1 \
28 | grep '^Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 14' \
29 >/dev/null 2>&1`; then
30
31 NGX_CC_NAME=msvc8
32 echo " + using Microsoft Visual C++ 8 compiler"
33
34 else if `$NGX_WINE $CC -v 2>&1 \
28 | grep '^Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 13' \ 35 | grep '^Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 13' \
29 >/dev/null 2>&1`; then 36 >/dev/null 2>&1`; then
30 37
31 NGX_CC_NAME=msvc7 38 NGX_CC_NAME=msvc7
32 echo " + using Microsoft Visual C++ 7 compiler" 39 echo " + using Microsoft Visual C++ 7 compiler"
33 40
34 else 41 else
35 NGX_CC_NAME=msvc 42 NGX_CC_NAME=msvc
36 echo " + using Microsoft Visual C++ compiler" 43 echo " + using Microsoft Visual C++ compiler"
44 fi
37 fi 45 fi
38 46
39 else 47 else
40 if [ "$CC" = wcl386 ]; then 48 if [ "$CC" = wcl386 ]; then
41 NGX_CC_NAME=owc 49 NGX_CC_NAME=owc