sl@0: // (C) Copyright John Maddock 2001 - 2003. sl@0: // (C) Copyright Jens Maurer 2001. sl@0: // (C) Copyright David Abrahams 2003. sl@0: // Use, modification and distribution are subject to the sl@0: // Boost Software License, Version 1.0. (See accompanying file sl@0: // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) sl@0: sl@0: // See http://www.boost.org for most recent version. sl@0: sl@0: // Rogue Wave std lib: sl@0: sl@0: #if !defined(__STD_RWCOMPILER_H__) && !defined(_RWSTD_VER) sl@0: # include sl@0: # if !defined(__STD_RWCOMPILER_H__) && !defined(_RWSTD_VER) sl@0: # error This is not the Rogue Wave standard library sl@0: # endif sl@0: #endif sl@0: // sl@0: // figure out a consistent version number: sl@0: // sl@0: #ifndef _RWSTD_VER sl@0: # define BOOST_RWSTD_VER 0x010000 sl@0: #elif _RWSTD_VER < 0x010000 sl@0: # define BOOST_RWSTD_VER (_RWSTD_VER << 8) sl@0: #else sl@0: # define BOOST_RWSTD_VER _RWSTD_VER sl@0: #endif sl@0: sl@0: #ifndef _RWSTD_VER sl@0: # define BOOST_STDLIB "Rogue Wave standard library version (Unknown version)" sl@0: #else sl@0: # define BOOST_STDLIB "Rogue Wave standard library version " BOOST_STRINGIZE(_RWSTD_VER) sl@0: #endif sl@0: sl@0: // sl@0: // Prior to version 2.2.0 the primary template for std::numeric_limits sl@0: // does not have compile time constants, even though specializations of that sl@0: // template do: sl@0: // sl@0: #if BOOST_RWSTD_VER < 0x020200 sl@0: # define BOOST_NO_LIMITS_COMPILE_TIME_CONSTANTS sl@0: #endif sl@0: sl@0: // Sun CC 5.5 patch 113817-07 adds long long specialization, but does not change the sl@0: // library version number (http://sunsolve6.sun.com/search/document.do?assetkey=1-21-113817): sl@0: #if BOOST_RWSTD_VER <= 0x020101 && (!defined(__SUNPRO_CC) || (__SUNPRO_CC < 0x550)) sl@0: # define BOOST_NO_LONG_LONG_NUMERIC_LIMITS sl@0: # endif sl@0: sl@0: // sl@0: // Borland version of numeric_limits lacks __int64 specialisation: sl@0: // sl@0: #ifdef __BORLANDC__ sl@0: # define BOOST_NO_MS_INT64_NUMERIC_LIMITS sl@0: #endif sl@0: sl@0: // sl@0: // No std::iterator if it can't figure out default template args: sl@0: // sl@0: #if defined(_RWSTD_NO_SIMPLE_DEFAULT_TEMPLATES) || defined(RWSTD_NO_SIMPLE_DEFAULT_TEMPLATES) || (BOOST_RWSTD_VER < 0x020000) sl@0: # define BOOST_NO_STD_ITERATOR sl@0: #endif sl@0: sl@0: // sl@0: // No iterator traits without partial specialization: sl@0: // sl@0: #if defined(_RWSTD_NO_CLASS_PARTIAL_SPEC) || defined(RWSTD_NO_CLASS_PARTIAL_SPEC) sl@0: # define BOOST_NO_STD_ITERATOR_TRAITS sl@0: #endif sl@0: sl@0: // sl@0: // Prior to version 2.0, std::auto_ptr was buggy, and there were no sl@0: // new-style iostreams, and no conformant std::allocator: sl@0: // sl@0: #if (BOOST_RWSTD_VER < 0x020000) sl@0: # define BOOST_NO_AUTO_PTR sl@0: # define BOOST_NO_STRINGSTREAM sl@0: # define BOOST_NO_STD_ALLOCATOR sl@0: # define BOOST_NO_STD_LOCALE sl@0: #endif sl@0: sl@0: // sl@0: // No template iterator constructors without member template support: sl@0: // sl@0: #if defined(RWSTD_NO_MEMBER_TEMPLATES) || defined(_RWSTD_NO_MEMBER_TEMPLATES) sl@0: # define BOOST_NO_TEMPLATED_ITERATOR_CONSTRUCTORS sl@0: #endif sl@0: sl@0: // sl@0: // RW defines _RWSTD_ALLOCATOR if the allocator is conformant and in use sl@0: // (the or _HPACC_ part is a hack - the library seems to define _RWSTD_ALLOCATOR sl@0: // on HP aCC systems even though the allocator is in fact broken): sl@0: // sl@0: #if !defined(_RWSTD_ALLOCATOR) || (defined(__HP_aCC) && __HP_aCC <= 33100) sl@0: # define BOOST_NO_STD_ALLOCATOR sl@0: #endif sl@0: sl@0: // sl@0: // If we have a std::locale, we still may not have std::use_facet: sl@0: // sl@0: #if defined(_RWSTD_NO_TEMPLATE_ON_RETURN_TYPE) && !defined(BOOST_NO_STD_LOCALE) sl@0: # define BOOST_NO_STD_USE_FACET sl@0: # define BOOST_HAS_TWO_ARG_USE_FACET sl@0: #endif sl@0: sl@0: // sl@0: // There's no std::distance prior to version 2, or without sl@0: // partial specialization support: sl@0: // sl@0: #if (BOOST_RWSTD_VER < 0x020000) || defined(_RWSTD_NO_CLASS_PARTIAL_SPEC) sl@0: #define BOOST_NO_STD_DISTANCE sl@0: #endif sl@0: sl@0: // sl@0: // Some versions of the rogue wave library don't have assignable sl@0: // OutputIterators: sl@0: // sl@0: #if BOOST_RWSTD_VER < 0x020100 sl@0: # define BOOST_NO_STD_OUTPUT_ITERATOR_ASSIGN sl@0: #endif sl@0: sl@0: // sl@0: // Disable BOOST_HAS_LONG_LONG when the library has no support for it. sl@0: // sl@0: #if !defined(_RWSTD_LONG_LONG) && defined(BOOST_HAS_LONG_LONG) sl@0: # undef BOOST_HAS_LONG_LONG sl@0: #endif