1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
|
dnl Copyright (C) 2009 Sun Microsystems, Inc.
dnl This file is free software; Sun Microsystems, Inc.
dnl gives unlimited permission to copy and/or distribute it,
dnl with or without modifications, as long as this notice is preserved.
AC_DEFUN([PANDORA_CHECK_C_VERSION],[
dnl Print version of C compiler
AC_MSG_CHECKING("C Compiler version--$GCC")
AS_IF([test "$GCC" = "yes"],[
CC_VERSION=`$CC --version | sed 1q`
],[AS_IF([test "$SUNCC" = "yes"],[
CC_VERSION=`$CC -V 2>&1 | sed 1q`
],[
CC_VERSION=""
])
])
AC_MSG_RESULT("$CC_VERSION")
AC_SUBST(CC_VERSION)
])
AC_DEFUN([PANDORA_CHECK_CXX_VERSION], [
dnl Print version of CXX compiler
AC_MSG_CHECKING("C++ Compiler version")
AS_IF([test "$GCC" = "yes"],[
CXX_VERSION=`$CXX --version | sed 1q`
],[AS_IF([test "$SUNCC" = "yes"],[
CXX_VERSION=`$CXX -V 2>&1 | sed 1q`
],[
CXX_VERSION=""
])
])
AC_MSG_RESULT("$CXX_VERSION")
AC_SUBST(CXX_VERSION)
])
|