$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r70223 - trunk/boost/config/compiler
From: john_at_[hidden]
Date: 2011-03-20 09:17:51
Author: johnmaddock
Date: 2011-03-20 09:17:48 EDT (Sun, 20 Mar 2011)
New Revision: 70223
URL: http://svn.boost.org/trac/boost/changeset/70223
Log:
Disable fenv.h for Intel < 12.0 as it doesn't actually work!
Text files modified: 
   trunk/boost/config/compiler/intel.hpp |     9 ++++++++-                               
   1 files changed, 8 insertions(+), 1 deletions(-)
Modified: trunk/boost/config/compiler/intel.hpp
==============================================================================
--- trunk/boost/config/compiler/intel.hpp	(original)
+++ trunk/boost/config/compiler/intel.hpp	2011-03-20 09:17:48 EDT (Sun, 20 Mar 2011)
@@ -218,9 +218,16 @@
 #  undef  BOOST_NO_AUTO_MULTIDECLARATIONS
 #endif
 
+#if (BOOST_INTEL_CXX_VERSION < 1200)
+//
+// fenv.h appears not to work with Intel prior to 12.0:
+//
+#  define BOOST_NO_FENV_H
+#endif
+
 //
 // last known and checked version:
-#if (BOOST_INTEL_CXX_VERSION > 1110)
+#if (BOOST_INTEL_CXX_VERSION > 1200)
 #  if defined(BOOST_ASSERT_CONFIG)
 #     error "Unknown compiler version - please run the configure tests and report the results"
 #  elif defined(_MSC_VER)