From: wolf Date: Fri, 15 Feb 2002 12:29:57 +0000 (+0000) Subject: Recognize Kai's C++ compiler. Since I can't test it, don't install X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9a3e3edc6b9b25d60cdb851ea46fb751e5e64945;p=dealii-svn.git Recognize Kai's C++ compiler. Since I can't test it, don't install flags for it, though. git-svn-id: https://svn.dealii.org/branches/Branch-3-3@5518 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/configure.in b/deal.II/configure.in index d3579fbe62..20f1b8874c 100644 --- a/deal.II/configure.in +++ b/deal.II/configure.in @@ -153,9 +153,16 @@ else GXX_VERSION=sun_workshop else - dnl Aw, nothing suitable found... - AC_MSG_ERROR(Unrecognized compiler, sorry) - exit 1 + is_kai_cc=`($CXX -V 2>&1) | grep 'KAI C++'" + if test "x$is_kai_cc" != "x" ; then + AC_MSG_RESULT(compile is KAI C++) + GXX_VERSSION=kai_cc + else + + dnl Aw, nothing suitable found... + AC_MSG_ERROR(Unrecognized compiler, sorry) + exit 1 + fi fi fi fi