2003-11-26 12:25:35 +00:00
// (C) Copyright John Maddock 2001 - 2003.
// (C) Copyright Jens Maurer 2001.
// (C) Copyright Peter Dimov 2001.
// (C) Copyright David Abrahams 2002.
// (C) Copyright Guillaume Melquiond 2003.
// Use, modification and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file
2003-10-04 11:29:20 +00:00
// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
2001-09-18 11:13:39 +00:00
// See http://www.boost.org for most recent version.
// Dinkumware standard library config:
# if !defined(_YVALS) && !defined(_CPPLIB_VER)
2005-10-19 16:38:40 +00:00
# include <boost/config/no_tr1/utility.hpp>
2001-09-18 11:13:39 +00:00
# if !defined(_YVALS) && !defined(_CPPLIB_VER)
# error This is not the Dinkumware lib!
# endif
# endif
# if defined(_CPPLIB_VER) && (_CPPLIB_VER >= 306)
// full dinkumware 3.06 and above
// fully conforming provided the compiler supports it:
2003-11-26 12:25:35 +00:00
# if !(defined(_GLOBAL_USING) && (_GLOBAL_USING+0 > 0)) && !defined(__BORLANDC__) && !defined(_STD) && !(defined(__ICC) && (__ICC >= 700)) // can be defined in yvals.h
2001-09-18 11:13:39 +00:00
# define BOOST_NO_STDC_NAMESPACE
# endif
2003-01-04 12:53:08 +00:00
# if !(defined(_HAS_MEMBER_TEMPLATES_REBIND) && (_HAS_MEMBER_TEMPLATES_REBIND+0 > 0)) && !(defined(_MSC_VER) && (_MSC_VER > 1300)) && defined(BOOST_MSVC)
2001-09-25 19:04:56 +00:00
# define BOOST_NO_STD_ALLOCATOR
# endif
2003-05-10 11:35:40 +00:00
# define BOOST_HAS_PARTIAL_STD_ALLOCATOR
2004-03-18 11:32:08 +00:00
# if defined(BOOST_MSVC) && (BOOST_MSVC < 1300)
2001-09-18 11:13:39 +00:00
// if this lib version is set up for vc6 then there is no std::use_facet:
# define BOOST_NO_STD_USE_FACET
# define BOOST_HAS_TWO_ARG_USE_FACET
2002-02-21 11:34:11 +00:00
// C lib functions aren't in namespace std either:
# define BOOST_NO_STDC_NAMESPACE
2002-08-13 11:52:06 +00:00
// and nor is <exception>
# define BOOST_NO_EXCEPTION_STD_NAMESPACE
2001-09-18 11:13:39 +00:00
# endif
2002-09-08 11:31:56 +00:00
// There's no numeric_limits<long long> support unless _LONGLONG is defined:
# if !defined(_LONGLONG) && (_CPPLIB_VER <= 310)
# define BOOST_NO_MS_INT64_NUMERIC_LIMITS
# endif
2003-11-26 12:25:35 +00:00
// 3.06 appears to have (non-sgi versions of) <hash_set> & <hash_map>,
2001-09-25 19:31:32 +00:00
// and no <slist> at all
2001-09-18 11:13:39 +00:00
# else
# define BOOST_MSVC_STD_ITERATOR 1
# define BOOST_NO_STD_ITERATOR
# define BOOST_NO_TEMPLATED_ITERATOR_CONSTRUCTORS
# define BOOST_NO_STD_ALLOCATOR
# define BOOST_NO_STDC_NAMESPACE
# define BOOST_NO_STD_USE_FACET
# define BOOST_NO_STD_OUTPUT_ITERATOR_ASSIGN
# define BOOST_HAS_MACRO_USE_FACET
# ifndef _CPPLIB_VER
// Updated Dinkum library defines this, and provides
2009-08-06 09:22:02 +00:00
// its own min and max definitions, as does MTA version.
# ifndef __MTA__
# define BOOST_NO_STD_MIN_MAX
# endif
2002-07-18 11:06:42 +00:00
# define BOOST_NO_MS_INT64_NUMERIC_LIMITS
2001-09-18 11:13:39 +00:00
# endif
# endif
2004-02-03 12:41:45 +00:00
//
// std extension namespace is stdext for vc7.1 and later,
// the same applies to other compilers that sit on top
// of vc7.1 (Intel and Comeau):
//
# if defined(_MSC_VER) && (_MSC_VER >= 1310) && !defined(__BORLANDC__)
# define BOOST_STD_EXTENSION_NAMESPACE stdext
# endif
2003-05-10 11:35:40 +00:00
2003-11-26 12:25:35 +00:00
# if (defined(_MSC_VER) && (_MSC_VER <= 1300) && !defined(__BORLANDC__)) || !defined(_CPPLIB_VER) || (_CPPLIB_VER < 306)
2001-09-18 11:13:39 +00:00
// if we're using a dinkum lib that's
2002-07-27 11:43:45 +00:00
// been configured for VC6/7 then there is
2001-09-18 11:13:39 +00:00
// no iterator traits (true even for icl)
# define BOOST_NO_STD_ITERATOR_TRAITS
# endif
2004-03-22 12:58:55 +00:00
# if defined(__ICL) && (__ICL < 800) && defined(_CPPLIB_VER) && (_CPPLIB_VER <= 310)
2002-09-01 10:45:12 +00:00
// Intel C++ chokes over any non-trivial use of <locale>
// this may be an overly restrictive define, but regex fails without it:
# define BOOST_NO_STD_LOCALE
# endif
2010-04-20 17:48:16 +00:00
# include <typeinfo>
# if !_HAS_EXCEPTIONS
# define BOOST_NO_STD_TYPEINFO
# endif
2009-05-21 15:16:39 +00:00
// C++0x headers implemented in 520 (as shipped by Microsoft)
2009-05-15 17:08:26 +00:00
//
2009-05-21 15:16:39 +00:00
# if !defined(_CPPLIB_VER) || _CPPLIB_VER < 520
2009-05-15 17:08:26 +00:00
# define BOOST_NO_0X_HDR_ARRAY
# define BOOST_NO_0X_HDR_CODECVT
2009-05-21 15:16:39 +00:00
# define BOOST_NO_0X_HDR_FORWARD_LIST
# define BOOST_NO_0X_HDR_INITIALIZER_LIST
# define BOOST_NO_0X_HDR_RANDOM
# define BOOST_NO_0X_HDR_REGEX
# define BOOST_NO_0X_HDR_SYSTEM_ERROR
# define BOOST_NO_0X_HDR_TYPE_TRAITS
# define BOOST_NO_STD_UNORDERED // deprecated; see following
# define BOOST_NO_0X_HDR_UNORDERED_MAP
# define BOOST_NO_0X_HDR_UNORDERED_SET
2010-05-18 16:27:11 +00:00
# define BOOST_NO_0X_HDR_TUPLE
2010-06-04 12:37:44 +00:00
# define BOOST_NO_0X_HDR_TYPEINDEX
2010-05-18 16:27:11 +00:00
# endif
# if !defined(_HAS_TR1_IMPORTS) && !defined(BOOST_NO_0X_HDR_TUPLE)
# define BOOST_NO_0X_HDR_TUPLE
2009-05-21 15:16:39 +00:00
# endif
// C++0x headers not yet implemented
//
# define BOOST_NO_0X_HDR_CHRONO
2009-05-15 17:08:26 +00:00
# define BOOST_NO_0X_HDR_CONCEPTS
# define BOOST_NO_0X_HDR_CONDITION_VARIABLE
# define BOOST_NO_0X_HDR_CONTAINER_CONCEPTS
# define BOOST_NO_0X_HDR_FUTURE
# define BOOST_NO_0X_HDR_ITERATOR_CONCEPTS
# define BOOST_NO_0X_HDR_MEMORY_CONCEPTS
# define BOOST_NO_0X_HDR_MUTEX
# define BOOST_NO_0X_HDR_RATIO
# define BOOST_NO_0X_HDR_THREAD
2010-09-26 09:30:38 +00:00
# define BOOST_NO_NUMERIC_LIMITS_LOWEST
2009-05-15 17:08:26 +00:00
2002-11-09 11:54:05 +00:00
# ifdef _CPPLIB_VER
# define BOOST_DINKUMWARE_STDLIB _CPPLIB_VER
# else
# define BOOST_DINKUMWARE_STDLIB 1
# endif
2001-09-18 11:13:39 +00:00
# ifdef _CPPLIB_VER
# define BOOST_STDLIB "Dinkumware standard library version " BOOST_STRINGIZE(_CPPLIB_VER)
# else
# define BOOST_STDLIB "Dinkumware standard library version 1.x"
# endif
2002-09-06 10:16:56 +00:00
2002-09-07 10:45:47 +00:00
2002-11-09 11:54:05 +00:00
2003-10-04 11:29:20 +00:00
2004-03-22 12:58:55 +00:00