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
This commit is contained in:
Jean-Marc Lasgouttes 2006-12-19 06:33:29 +00:00
parent 273d4dd3c4
commit 5053826965
3 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2006-12-19 Jean-Marc Lasgouttes <lasgouttes@lyx.org>
* boost/config/compiler/gcc.hpp: do not warn against gcc 4.1.
2006-04-11 Jean-Marc Lasgouttes <lasgouttes@lyx.org>
* libs/filesystem/src/operations_posix_windows.cpp: change needed

View File

@ -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

View File

@ -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.