Chris@16
|
1 // (C) Copyright John Maddock 2002 - 2003.
|
Chris@16
|
2 // (C) Copyright Jens Maurer 2002 - 2003.
|
Chris@16
|
3 // (C) Copyright Beman Dawes 2002 - 2003.
|
Chris@16
|
4 // Use, modification and distribution are subject to the
|
Chris@16
|
5 // Boost Software License, Version 1.0. (See accompanying file
|
Chris@16
|
6 // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
Chris@16
|
7
|
Chris@16
|
8 // See http://www.boost.org for most recent version.
|
Chris@16
|
9
|
Chris@16
|
10 // Comeau STL:
|
Chris@16
|
11
|
Chris@16
|
12 #if !defined(__LIBCOMO__)
|
Chris@16
|
13 # include <boost/config/no_tr1/utility.hpp>
|
Chris@16
|
14 # if !defined(__LIBCOMO__)
|
Chris@16
|
15 # error "This is not the Comeau STL!"
|
Chris@16
|
16 # endif
|
Chris@16
|
17 #endif
|
Chris@16
|
18
|
Chris@16
|
19 //
|
Chris@16
|
20 // std::streambuf<wchar_t> is non-standard
|
Chris@16
|
21 // NOTE: versions of libcomo prior to beta28 have octal version numbering,
|
Chris@16
|
22 // e.g. version 25 is 21 (dec)
|
Chris@16
|
23 #if __LIBCOMO_VERSION__ <= 22
|
Chris@16
|
24 # define BOOST_NO_STD_WSTREAMBUF
|
Chris@16
|
25 #endif
|
Chris@16
|
26
|
Chris@16
|
27 #if (__LIBCOMO_VERSION__ <= 31) && defined(_WIN32)
|
Chris@16
|
28 #define BOOST_NO_SWPRINTF
|
Chris@16
|
29 #endif
|
Chris@16
|
30
|
Chris@16
|
31 #if __LIBCOMO_VERSION__ >= 31
|
Chris@16
|
32 # define BOOST_HAS_HASH
|
Chris@16
|
33 # define BOOST_HAS_SLIST
|
Chris@16
|
34 #endif
|
Chris@16
|
35
|
Chris@16
|
36 // C++0x headers not yet implemented
|
Chris@16
|
37 //
|
Chris@16
|
38 # define BOOST_NO_CXX11_HDR_ARRAY
|
Chris@16
|
39 # define BOOST_NO_CXX11_HDR_CHRONO
|
Chris@16
|
40 # define BOOST_NO_CXX11_HDR_CODECVT
|
Chris@16
|
41 # define BOOST_NO_CXX11_HDR_CONDITION_VARIABLE
|
Chris@16
|
42 # define BOOST_NO_CXX11_HDR_FORWARD_LIST
|
Chris@16
|
43 # define BOOST_NO_CXX11_HDR_FUTURE
|
Chris@16
|
44 # define BOOST_NO_CXX11_HDR_INITIALIZER_LIST
|
Chris@16
|
45 # define BOOST_NO_CXX11_HDR_MUTEX
|
Chris@16
|
46 # define BOOST_NO_CXX11_HDR_RANDOM
|
Chris@16
|
47 # define BOOST_NO_CXX11_HDR_RATIO
|
Chris@16
|
48 # define BOOST_NO_CXX11_HDR_REGEX
|
Chris@16
|
49 # define BOOST_NO_CXX11_HDR_SYSTEM_ERROR
|
Chris@16
|
50 # define BOOST_NO_CXX11_HDR_THREAD
|
Chris@16
|
51 # define BOOST_NO_CXX11_HDR_TUPLE
|
Chris@16
|
52 # define BOOST_NO_CXX11_HDR_TYPE_TRAITS
|
Chris@16
|
53 # define BOOST_NO_CXX11_HDR_TYPEINDEX
|
Chris@16
|
54 # define BOOST_NO_CXX11_HDR_UNORDERED_MAP
|
Chris@16
|
55 # define BOOST_NO_CXX11_HDR_UNORDERED_SET
|
Chris@16
|
56 # define BOOST_NO_CXX11_NUMERIC_LIMITS
|
Chris@16
|
57 # define BOOST_NO_CXX11_ALLOCATOR
|
Chris@16
|
58 # define BOOST_NO_CXX11_ATOMIC_SMART_PTR
|
Chris@16
|
59 # define BOOST_NO_CXX11_SMART_PTR
|
Chris@16
|
60 # define BOOST_NO_CXX11_HDR_FUNCTIONAL
|
Chris@101
|
61 # define BOOST_NO_CXX11_HDR_ATOMIC
|
Chris@101
|
62 # define BOOST_NO_CXX11_STD_ALIGN
|
Chris@101
|
63 # define BOOST_NO_CXX11_ADDRESSOF
|
Chris@16
|
64
|
Chris@16
|
65 //
|
Chris@16
|
66 // Intrinsic type_traits support.
|
Chris@16
|
67 // The SGI STL has it's own __type_traits class, which
|
Chris@16
|
68 // has intrinsic compiler support with SGI's compilers.
|
Chris@16
|
69 // Whatever map SGI style type traits to boost equivalents:
|
Chris@16
|
70 //
|
Chris@16
|
71 #define BOOST_HAS_SGI_TYPE_TRAITS
|
Chris@16
|
72
|
Chris@16
|
73 #define BOOST_STDLIB "Comeau standard library " BOOST_STRINGIZE(__LIBCOMO_VERSION__)
|
Chris@16
|
74
|
Chris@16
|
75
|