Chris@16: // (C) Copyright John Maddock 2001. Chris@16: // (C) Copyright Douglas Gregor 2001. Chris@16: // (C) Copyright Peter Dimov 2001. Chris@16: // (C) Copyright Aleksey Gurtovoy 2003. Chris@16: // (C) Copyright Beman Dawes 2003. Chris@16: // (C) Copyright Jens Maurer 2003. Chris@16: // Use, modification and distribution are subject to the Chris@16: // Boost Software License, Version 1.0. (See accompanying file Chris@16: // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) Chris@16: Chris@16: // See http://www.boost.org for most recent version. Chris@16: Chris@16: // Comeau C++ compiler setup: Chris@16: Chris@16: #include "boost/config/compiler/common_edg.hpp" Chris@16: Chris@16: #if (__COMO_VERSION__ <= 4245) Chris@16: Chris@16: # if defined(_MSC_VER) && _MSC_VER <= 1300 Chris@16: # if _MSC_VER > 100 Chris@16: // only set this in non-strict mode: Chris@16: # define BOOST_NO_ARGUMENT_DEPENDENT_LOOKUP Chris@16: # endif Chris@16: # endif Chris@16: Chris@16: // Void returns don't work when emulating VC 6 (Peter Dimov) Chris@16: // TODO: look up if this doesn't apply to the whole 12xx range Chris@16: # if defined(_MSC_VER) && (_MSC_VER < 1300) Chris@16: # define BOOST_NO_VOID_RETURNS Chris@16: # endif Chris@16: Chris@16: #endif // version 4245 Chris@16: Chris@16: // Chris@16: // enable __int64 support in VC emulation mode Chris@16: // Chris@16: # if defined(_MSC_VER) && (_MSC_VER >= 1200) Chris@16: # define BOOST_HAS_MS_INT64 Chris@16: # endif Chris@16: Chris@16: #define BOOST_COMPILER "Comeau compiler version " BOOST_STRINGIZE(__COMO_VERSION__) Chris@16: Chris@16: // Chris@16: // versions check: Chris@16: // we don't know Comeau prior to version 4245: Chris@16: #if __COMO_VERSION__ < 4245 Chris@16: # error "Compiler not configured - please reconfigure" Chris@16: #endif Chris@16: // Chris@16: // last known and checked version is 4245: Chris@16: #if (__COMO_VERSION__ > 4245) Chris@16: # if defined(BOOST_ASSERT_CONFIG) Chris@16: # error "Unknown compiler version - please run the configure tests and report the results" Chris@16: # endif Chris@16: #endif Chris@16: Chris@16: Chris@16: Chris@16: