From: Wolfgang Bangerth Date: Thu, 5 Oct 2000 14:32:31 +0000 (+0000) Subject: subsume gcc snapshots 2.96 and 2.97 under gcc version 2.95 as well, as X-Git-Tag: v8.0.0~20055 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9ebfd110dfbb2bc36e1d2e4bd3685ea23b54b90c;p=dealii.git subsume gcc snapshots 2.96 and 2.97 under gcc version 2.95 as well, as they should support the same compiler flags git-svn-id: https://svn.dealii.org/trunk@3376 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/configure b/deal.II/configure index 4106b0f03d..e96b7e1d8e 100755 --- a/deal.II/configure +++ b/deal.II/configure @@ -1183,7 +1183,7 @@ if test $GXX = yes ; then echo "$ac_t""Compiler is egcs-1.1" 1>&6 GXX_VERSION=egcs1.1 ;; - *2.95*) + *2.95* | *2.96* | *2.97* ) echo "$ac_t""Compiler is gcc-2.95" 1>&6 GXX_VERSION=gcc2.95 ;; diff --git a/deal.II/configure.in b/deal.II/configure.in index e12cd7a5b3..8e7b003f78 100644 --- a/deal.II/configure.in +++ b/deal.II/configure.in @@ -107,6 +107,10 @@ AC_PATH_PROG(CC,$CC) dnl Find the right C++ compiler. This modifies the following dnl variables: CXX, GXX, CXXFLAGS +dnl +dnl Note that we subsume gcc snapshots 2.96 and 2.97 under +dnl gcc version 2.95 as well, as they should support the same +dnl compiler flags AC_PROG_CXX AC_PATH_PROG(CXX,$CXX) if test $GXX = yes ; then @@ -117,7 +121,7 @@ if test $GXX = yes ; then AC_MSG_RESULT(Compiler is egcs-1.1) GXX_VERSION=egcs1.1 ;; - *2.95*) + *2.95* | *2.96* | *2.97* ) AC_MSG_RESULT(Compiler is gcc-2.95) GXX_VERSION=gcc2.95 ;;