From d9ec851d4d92bcb0a0aaa6b90df4912cc577dc85 Mon Sep 17 00:00:00 2001 From: wolf Date: Fri, 15 Feb 2002 12:36:01 +0000 Subject: [PATCH] Recognize KAI C++, but since I cant test don't set flags. git-svn-id: https://svn.dealii.org/trunk@5520 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/configure.in | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/deal.II/configure.in b/deal.II/configure.in index b811cbdd75..3ff7be05e2 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 -- 2.39.5