From 1e8229d83c947401a8598af6910be79cd3737df7 Mon Sep 17 00:00:00 2001 From: Angus Leeming Date: Mon, 21 Jul 2003 22:32:55 +0000 Subject: [PATCH] Do not pass -Winline to gcc. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_3_X@7336 a592a061-630c-0410-9148-cb99ea01b6c8 --- config/ChangeLog | 4 ++++ config/lyxinclude.m4 | 7 ------- status.13x | 1 + 3 files changed, 5 insertions(+), 7 deletions(-) diff --git a/config/ChangeLog b/config/ChangeLog index a5d9bf3590..326d87235c 100644 --- a/config/ChangeLog +++ b/config/ChangeLog @@ -1,3 +1,7 @@ +2003-07-15 Angus Leeming + + * lyxinclude.m4: Do not pass the -Winline option to gcc. + 2003-07-03 Jean-Marc Lasgouttes * configure.in: diff --git a/config/lyxinclude.m4 b/config/lyxinclude.m4 index b59377af1b..dc4d817b93 100644 --- a/config/lyxinclude.m4 +++ b/config/lyxinclude.m4 @@ -223,13 +223,6 @@ if test x$GXX = xyes; then 3.1*) CXXFLAGS="$CXXFLAGS -W -Wall";; *) CXXFLAGS="$CXXFLAGS -W -Wall";; esac - if test $lyx_devel_version = yes ; then - case $gxx_version in - 2.95.*) ;; - 2.96*) ;; - *) CXXFLAGS="$CXXFLAGS -Winline";; - esac - fi fi fi])dnl diff --git a/status.13x b/status.13x index 4da15da358..60241c05c4 100644 --- a/status.13x +++ b/status.13x @@ -85,3 +85,4 @@ What's new - allow insertion of width strings like "2.5in" into tabular dialog (Qt only) +- Do not report failed inlining when compiling with gcc.