comparison auto/cc/name @ 517:dadfa78d2270 release-0.1.33

nginx-0.1.33-RELEASE import *) Bugfix: nginx could not be built with the --without-pcre parameter; the bug had appeared in 0.1.29. *) Bugfix: 3, 4, 7, and 8 the "proxy_set_header" directives in one level cause the bus fault on start up. *) Bugfix: the HTTP protocol was specified in the HTTPS redirects. *) Bugfix: if the "rewrite" directive used the captures inside the "if" directive, then the 500 error code was returned.
author Igor Sysoev <igor@sysoev.ru>
date Mon, 23 May 2005 12:07:45 +0000
parents 975f62e77f02
children e48ebafc6939
comparison
equal deleted inserted replaced
516:ea9642a65514 517:dadfa78d2270
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 " using GNU C compiler"
35 35
36 else 36 else
37 if `$CC -V 2>&1 | grep '^Intel(R) C++ Compiler' 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 " using Intel C++ compiler"
40 40
41 else 41 else
42 if `$CC -V 2>&1 | grep '^Compaq C' 2>&1 >/dev/null`; then 42 if `$CC -V 2>&1 | grep '^Compaq C' 2>&1 >/dev/null`; then
47 if `$CC -V 2>&1 | grep '^aCC: ' 2>&1 >/dev/null`; then 47 if `$CC -V 2>&1 | grep '^aCC: ' 2>&1 >/dev/null`; then
48 NGX_CC_NAME=acc 48 NGX_CC_NAME=acc
49 echo " using HP aC++ compiler" 49 echo " using HP aC++ compiler"
50 50
51 else 51 else
52 NGX_CC_NAME=unknown
52 echo " unknown" 53 echo " unknown"
53 54
54 fi # acc 55 fi # acc
55 fi # ccc 56 fi # ccc
56 fi # icc 57 fi # icc