view auto/cc/name @ 210:14050d2bec9b NGINX_0_3_52

nginx 0.3.52 *) Change: the ngx_http_index_module behavior for the "POST /" requests is reverted to the 0.3.40 version state: the module now does not return the 405 error. *) Bugfix: the worker process may got caught in an endless loop if the limit rate was used; bug appeared in 0.3.37. *) Bugfix: ngx_http_charset_module logged "unknown charset" alert, even if the recoding was not needed; bug appeared in 0.3.50. *) Bugfix: if a code response of the PUT request was 409, then a temporary file was not removed.
author Igor Sysoev <http://sysoev.ru>
date Mon, 03 Jul 2006 00:00:00 +0400
parents df17fbafec8f
children c982febb7588
line wrap: on
line source


# Copyright (C) Igor Sysoev


echo $ngx_n "checking for C compiler ...$ngx_c"


if [ "$CC" = cl ]; then
    if `$NGX_WINE $CC -v 2>&1 \
        | grep '^Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 13' \
          2>&1 >/dev/null`; then

        NGX_CC_NAME=msvc7
        echo " Microsoft Visual C++ 7 compiler"

    else
        NGX_CC_NAME=msvc
        echo " Microsoft Visual C++ compiler"
    fi

else
if [ "$CC" = wcl386 ]; then
    NGX_CC_NAME=owc
    echo " Open Watcom C compiler"

else
if [ "$CC" = bcc32 ]; then
    NGX_CC_NAME=bcc
    echo " Borland C++ compiler"

else
if `$CC -v 2>&1 | grep 'gcc version' 2>&1 >/dev/null`; then
    NGX_CC_NAME=gcc
    echo " GNU C compiler"

else
if `$CC -V 2>&1 | grep '^Intel(R) C' 2>&1 >/dev/null`; then
    NGX_CC_NAME=icc
    echo " Intel C++ compiler"

else
if `$CC -V 2>&1 | grep 'Sun C' 2>&1 >/dev/null`; then
    NGX_CC_NAME=sunc
    echo " Sun C compiler"

else
if `$CC -V 2>&1 | grep '^Compaq C' 2>&1 >/dev/null`; then
    NGX_CC_NAME=ccc
    echo " Compaq C compiler"

else
if `$CC -V 2>&1 | grep '^aCC: ' 2>&1 >/dev/null`; then
    NGX_CC_NAME=acc
    echo " HP aC++ compiler"

else
    NGX_CC_NAME=unknown
    echo " unknown"

fi # acc
fi # ccc
fi # sunc
fi # icc
fi # gcc
fi # bcc
fi # owc
fi # msvc