First public contribution.
1 // (C) Copyright John Maddock 2001 - 2003.
2 // (C) Copyright Jens Maurer 2001.
3 // (C) Copyright Peter Dimov 2001.
4 // (C) Copyright David Abrahams 2002.
5 // (C) Copyright Guillaume Melquiond 2003.
6 // Use, modification and distribution are subject to the
7 // Boost Software License, Version 1.0. (See accompanying file
8 // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
10 // See http://www.boost.org for most recent version.
12 // Dinkumware standard library config:
14 #if !defined(_YVALS) && !defined(_CPPLIB_VER)
15 #include <boost/config/no_tr1/utility.hpp>
16 #if !defined(_YVALS) && !defined(_CPPLIB_VER)
17 #error This is not the Dinkumware lib!
22 #if defined(_CPPLIB_VER) && (_CPPLIB_VER >= 306)
23 // full dinkumware 3.06 and above
24 // fully conforming provided the compiler supports it:
25 # if !(defined(_GLOBAL_USING) && (_GLOBAL_USING+0 > 0)) && !defined(__BORLANDC__) && !defined(_STD) && !(defined(__ICC) && (__ICC >= 700)) // can be defined in yvals.h
26 # define BOOST_NO_STDC_NAMESPACE
28 # if !(defined(_HAS_MEMBER_TEMPLATES_REBIND) && (_HAS_MEMBER_TEMPLATES_REBIND+0 > 0)) && !(defined(_MSC_VER) && (_MSC_VER > 1300)) && defined(BOOST_MSVC)
29 # define BOOST_NO_STD_ALLOCATOR
31 # define BOOST_HAS_PARTIAL_STD_ALLOCATOR
32 # if defined(BOOST_MSVC) && (BOOST_MSVC < 1300)
33 // if this lib version is set up for vc6 then there is no std::use_facet:
34 # define BOOST_NO_STD_USE_FACET
35 # define BOOST_HAS_TWO_ARG_USE_FACET
36 // C lib functions aren't in namespace std either:
37 # define BOOST_NO_STDC_NAMESPACE
38 // and nor is <exception>
39 # define BOOST_NO_EXCEPTION_STD_NAMESPACE
41 // There's no numeric_limits<long long> support unless _LONGLONG is defined:
42 # if !defined(_LONGLONG) && (_CPPLIB_VER <= 310)
43 # define BOOST_NO_MS_INT64_NUMERIC_LIMITS
45 // 3.06 appears to have (non-sgi versions of) <hash_set> & <hash_map>,
46 // and no <slist> at all
48 # define BOOST_MSVC_STD_ITERATOR 1
49 # define BOOST_NO_STD_ITERATOR
50 # define BOOST_NO_TEMPLATED_ITERATOR_CONSTRUCTORS
51 # define BOOST_NO_STD_ALLOCATOR
52 # define BOOST_NO_STDC_NAMESPACE
53 # define BOOST_NO_STD_USE_FACET
54 # define BOOST_NO_STD_OUTPUT_ITERATOR_ASSIGN
55 # define BOOST_HAS_MACRO_USE_FACET
57 // Updated Dinkum library defines this, and provides
58 // its own min and max definitions.
59 # define BOOST_NO_STD_MIN_MAX
60 # define BOOST_NO_MS_INT64_NUMERIC_LIMITS
65 // std extension namespace is stdext for vc7.1 and later,
66 // the same applies to other compilers that sit on top
67 // of vc7.1 (Intel and Comeau):
69 #if defined(_MSC_VER) && (_MSC_VER >= 1310) && !defined(__BORLANDC__)
70 # define BOOST_STD_EXTENSION_NAMESPACE stdext
74 #if (defined(_MSC_VER) && (_MSC_VER <= 1300) && !defined(__BORLANDC__)) || !defined(_CPPLIB_VER) || (_CPPLIB_VER < 306)
75 // if we're using a dinkum lib that's
76 // been configured for VC6/7 then there is
77 // no iterator traits (true even for icl)
78 # define BOOST_NO_STD_ITERATOR_TRAITS
81 #if defined(__ICL) && (__ICL < 800) && defined(_CPPLIB_VER) && (_CPPLIB_VER <= 310)
82 // Intel C++ chokes over any non-trivial use of <locale>
83 // this may be an overly restrictive define, but regex fails without it:
84 # define BOOST_NO_STD_LOCALE
88 # define BOOST_DINKUMWARE_STDLIB _CPPLIB_VER
90 # define BOOST_DINKUMWARE_STDLIB 1
94 # define BOOST_STDLIB "Dinkumware standard library version " BOOST_STRINGIZE(_CPPLIB_VER)
96 # define BOOST_STDLIB "Dinkumware standard library version 1.x"