]> git.lyx.org Git - lyx.git/commitdiff
remove support for older gccs
authorLars Gullik Bjønnes <larsbj@gullik.org>
Sun, 5 Mar 2006 17:42:41 +0000 (17:42 +0000)
committerLars Gullik Bjønnes <larsbj@gullik.org>
Sun, 5 Mar 2006 17:42:41 +0000 (17:42 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@13296 a592a061-630c-0410-9148-cb99ea01b6c8

config/ChangeLog
config/lyxinclude.m4

index 51606ca5b3620fdba296cd8516e1a28a0ad1becf..ca70c0fb157077d20e1d25b725542128daa67977 100644 (file)
@@ -1,3 +1,7 @@
+2006-03-05  Lars Gullik Bjønnes  <larsbj@lyx.org>
+
+       * lyxinclude.m4: Remove support for versions of GCC older than 3.1
+
 2006-02-13  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
 
        * lyxinclude.m4 (LYX_USE_PACKAGING): do not set program_suffix for
index 63e54ee23612f055b2244cc11770411c9551bc12..bf2a2a37d524ff12f42fd6faca319fa6bae93c1f 100644 (file)
@@ -244,7 +244,7 @@ if test x$GXX = xyes; then
     fi
     if test x$enable_warnings = xyes ; then
         case $gxx_version in
-            2.*|3.1*|3.2*|3.3*)
+            3.1*|3.2*|3.3*)
                 CPPFLAGS="-W -Wall $CPPFLAGS"
                 ;;
             *)
@@ -254,9 +254,6 @@ if test x$GXX = xyes; then
     fi
   fi
   case $gxx_version in
-      2.95.1)  AM_CXXFLAGS="-fpermissive -ftemplate-depth-30";;
-      2.95.*)  AM_CXXFLAGS="-Wno-non-template-friend -ftemplate-depth-30";;
-      2.96*)  AM_CXXFLAGS="-fno-exceptions -ftemplate-depth-30 -Wno-non-template-friend";;
       3.1*)    AM_CXXFLAGS="-finline-limit=500 -fno-exceptions";;
       3.2*|3.3*)    AM_CXXFLAGS="-fno-exceptions";;
       3.4*|4.0*)