changeset 8:e0849ccf20da

Change a GCC version check, which breaks the build.
author Matti Hamalainen <ccr@tnsp.org>
date Wed, 21 Sep 2011 04:46:23 +0300
parents e1d5ffa6be0e
children b3afcfe8df5b
files boost/boost/config/compiler/gcc.hpp
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/boost/boost/config/compiler/gcc.hpp	Wed Sep 21 04:45:02 2011 +0300
+++ b/boost/boost/config/compiler/gcc.hpp	Wed Sep 21 04:46:23 2011 +0300
@@ -45,7 +45,7 @@
 #endif
 //
 // last known and checked version is 3.0:
-#if (__GNUC__ > 3) || ((__GNUC__ == 3) && (__GNUC_MINOR__ > 0))
+#if (__GNUC__ > 4) || ((__GNUC__ == 4) && (__GNUC_MINOR__ > 6))
 #  if defined(BOOST_ASSERT_CONFIG)
 #     error "Unknown compiler version - please run the configure tests and report the results"
 #  else