mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-05 17:09:56 +00:00
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:
parent
273d4dd3c4
commit
5053826965
@ -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
|
||||
|
@ -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
|
||||
|
@ -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.
|
||||
|
Loading…
Reference in New Issue
Block a user