From 5053826965ecf512b5ee7fe0107c2374ca8081f6 Mon Sep 17 00:00:00 2001 From: Jean-Marc Lasgouttes Date: Tue, 19 Dec 2006 06:33:29 +0000 Subject: [PATCH] boost works perfectly with gcc 4.1 git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_4_X@16329 a592a061-630c-0410-9148-cb99ea01b6c8 --- boost/ChangeLog | 4 ++++ boost/boost/config/compiler/gcc.hpp | 2 +- status.14x | 2 ++ 3 files changed, 7 insertions(+), 1 deletion(-) diff --git a/boost/ChangeLog b/boost/ChangeLog index a79b177d52..69927c36e1 100644 --- a/boost/ChangeLog +++ b/boost/ChangeLog @@ -1,3 +1,7 @@ +2006-12-19 Jean-Marc Lasgouttes + + * boost/config/compiler/gcc.hpp: do not warn against gcc 4.1. + 2006-04-11 Jean-Marc Lasgouttes * libs/filesystem/src/operations_posix_windows.cpp: change needed diff --git a/boost/boost/config/compiler/gcc.hpp b/boost/boost/config/compiler/gcc.hpp index 328f139726..e11ebec65e 100644 --- a/boost/boost/config/compiler/gcc.hpp +++ b/boost/boost/config/compiler/gcc.hpp @@ -85,7 +85,7 @@ #endif // // last known and checked version is 3.4: -#if (__GNUC__ > 4) || ((__GNUC__ == 4) && (__GNUC_MINOR__ > 0)) +#if (__GNUC__ > 4) || ((__GNUC__ == 4) && (__GNUC_MINOR__ > 1)) # if defined(BOOST_ASSERT_CONFIG) # error "Unknown compiler version - please run the configure tests and report the results" # else diff --git a/status.14x b/status.14x index 1fb82dcb9f..36309b480b 100644 --- a/status.14x +++ b/status.14x @@ -136,6 +136,8 @@ What's new - Allow autoconf 2.60 and 2.61 for building. +- Do not warn against using gcc 4.1. It works fine. + * Miscellaneous - The minimum required python version is now 2.2.0.