From: third-party Date: Mon, 11 Mar 2002 14:24:17 +0000 (+0000) Subject: Recognize gcc3.2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e33f3dff30d4caaf846f6d3027f90e8c87c46102;p=dealii-svn.git Recognize gcc3.2 git-svn-id: https://svn.dealii.org/trunk@5561 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/aclocal.m4 b/deal.II/aclocal.m4 index a833c5aef4..f6c476b813 100644 --- a/deal.II/aclocal.m4 +++ b/deal.II/aclocal.m4 @@ -52,6 +52,10 @@ AC_DEFUN(DEAL_II_DETERMINE_CXX_BRAND, dnl AC_MSG_RESULT(C++ compiler is gcc-3.1) GXX_VERSION=gcc3.1 ;; + *3.2*) + AC_MSG_RESULT(C++ compiler is gcc-3.2) + GXX_VERSION=gcc3.2 + ;; *2.4* | *2.5* | *2.6* | *2.7* | *2.8*) dnl These compilers are too old to support a useful subset dnl of modern C++, so we don't support them @@ -431,6 +435,10 @@ AC_DEFUN(DEAL_II_DETERMINE_F77_BRAND, dnl AC_MSG_RESULT(F77 compiler is gcc-3.1) F77_VERSION=gcc3.1 ;; + *3.2*) + AC_MSG_RESULT(F77 compiler is gcc-3.2) + F77_VERSION=gcc3.2 + ;; *2.4* | *2.5* | *2.6* | *2.7* | *2.8*) dnl These compilers are too old to support a useful subset dnl of modern C++, so we don't support them @@ -502,7 +510,7 @@ dnl ------------------------------------------------------------- AC_DEFUN(DEAL_II_SET_F77_FLAGS, dnl [ case "$F77_VERSION" in - egcs-1.1 | gcc2.95 | gcc2.96 | gcc2.97 | gcc3.0 | gcc3.1) + egcs-1.1 | gcc2.95 | gcc2.96 | gcc2.97 | gcc3.0 | gcc3.1 | gcc3.2) F77FLAGSG="$FFLAGS -ggdb -DDEBUG -pedantic -W -Wall" F77FLAGSO="$FFLAGS -O2"