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.