1
0
mirror of https://github.com/moparisthebest/curl synced 2024-08-13 17:03:50 -04:00

Fix IBM C and DEC/Compaq C compiler detection

This commit is contained in:
Yang Tse 2008-08-09 17:01:17 +00:00
parent 8af61cdb66
commit 63818f8488
2 changed files with 4 additions and 8 deletions

View File

@ -213,9 +213,7 @@ esac
AC_MSG_CHECKING([whether we are using the IBM C compiler]) AC_MSG_CHECKING([whether we are using the IBM C compiler])
CURL_CHECK_DEF([__IBMC__], [], [silent]) CURL_CHECK_DEF([__IBMC__], [], [silent])
CURL_CHECK_DEF([__IBMCPP__], [], [silent]) if test "$curl_cv_have_def___IBMC__" = "yes"; then
if test "$curl_cv_have_def___IBMC__" = "yes" ||
test "$curl_cv_have_def___IBMCPP__" = "yes"; then
AC_MSG_RESULT([yes]) AC_MSG_RESULT([yes])
dnl Ensure that compiler optimizations are always thread-safe. dnl Ensure that compiler optimizations are always thread-safe.
CFLAGS="$CFLAGS -qthreaded" CFLAGS="$CFLAGS -qthreaded"
@ -234,7 +232,7 @@ fi
AC_MSG_CHECKING([whether we are using the DEC/Compaq C compiler]) AC_MSG_CHECKING([whether we are using the DEC/Compaq C compiler])
CURL_CHECK_DEF([__DECC], [], [silent]) CURL_CHECK_DEF([__DECC], [], [silent])
CURL_CHECK_DEF([__DECC_VER], [], [silent]) CURL_CHECK_DEF([__DECC_VER], [], [silent])
if test "$curl_cv_have_def___DECC" = "yes" || if test "$curl_cv_have_def___DECC" = "yes" &&
test "$curl_cv_have_def___DECC_VER" = "yes"; then test "$curl_cv_have_def___DECC_VER" = "yes"; then
AC_MSG_RESULT([yes]) AC_MSG_RESULT([yes])
dnl Select strict ANSI C compiler mode dnl Select strict ANSI C compiler mode

View File

@ -280,9 +280,7 @@ esac
AC_MSG_CHECKING([whether we are using the IBM C compiler]) AC_MSG_CHECKING([whether we are using the IBM C compiler])
CURL_CHECK_DEF([__IBMC__], [], [silent]) CURL_CHECK_DEF([__IBMC__], [], [silent])
CURL_CHECK_DEF([__IBMCPP__], [], [silent]) if test "$curl_cv_have_def___IBMC__" = "yes"; then
if test "$curl_cv_have_def___IBMC__" = "yes" ||
test "$curl_cv_have_def___IBMCPP__" = "yes"; then
AC_MSG_RESULT([yes]) AC_MSG_RESULT([yes])
dnl Ensure that compiler optimizations are always thread-safe. dnl Ensure that compiler optimizations are always thread-safe.
CFLAGS="$CFLAGS -qthreaded" CFLAGS="$CFLAGS -qthreaded"
@ -301,7 +299,7 @@ fi
AC_MSG_CHECKING([whether we are using the DEC/Compaq C compiler]) AC_MSG_CHECKING([whether we are using the DEC/Compaq C compiler])
CURL_CHECK_DEF([__DECC], [], [silent]) CURL_CHECK_DEF([__DECC], [], [silent])
CURL_CHECK_DEF([__DECC_VER], [], [silent]) CURL_CHECK_DEF([__DECC_VER], [], [silent])
if test "$curl_cv_have_def___DECC" = "yes" || if test "$curl_cv_have_def___DECC" = "yes" &&
test "$curl_cv_have_def___DECC_VER" = "yes"; then test "$curl_cv_have_def___DECC_VER" = "yes"; then
AC_MSG_RESULT([yes]) AC_MSG_RESULT([yes])
dnl Select strict ANSI C compiler mode dnl Select strict ANSI C compiler mode