remove support for older gccs

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@13296 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Lars Gullik Bjønnes 2006-03-05 17:42:41 +00:00
parent 0c21c114d4
commit 3f103ffaa7
2 changed files with 5 additions and 4 deletions

View 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

View 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*)