libcomo.hpp 2.5 KB

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