vacpp.hpp 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. // (C) Copyright John Maddock 2001 - 2002.
  2. // Use, modification and distribution are subject to the
  3. // Boost Software License, Version 1.0. (See accompanying file
  4. // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  5. // See http://www.boost.org for most recent version.
  6. #if __IBMCPP__ <= 501
  7. # define BOOST_NO_STD_ALLOCATOR
  8. #endif
  9. #define BOOST_HAS_MACRO_USE_FACET
  10. #define BOOST_NO_STD_MESSAGES
  11. // Apple doesn't seem to reliably defined a *unix* macro
  12. #if !defined(CYGWIN) && ( defined(__unix__) \
  13. || defined(__unix) \
  14. || defined(unix) \
  15. || defined(__APPLE__) \
  16. || defined(__APPLE) \
  17. || defined(APPLE))
  18. # include <unistd.h>
  19. #endif
  20. // C++0x headers not yet implemented
  21. //
  22. # define BOOST_NO_CXX11_HDR_ARRAY
  23. # define BOOST_NO_CXX11_HDR_CHRONO
  24. # define BOOST_NO_CXX11_HDR_CODECVT
  25. # define BOOST_NO_CXX11_HDR_CONDITION_VARIABLE
  26. # define BOOST_NO_CXX11_HDR_FORWARD_LIST
  27. # define BOOST_NO_CXX11_HDR_FUTURE
  28. # define BOOST_NO_CXX11_HDR_INITIALIZER_LIST
  29. # define BOOST_NO_CXX11_HDR_MUTEX
  30. # define BOOST_NO_CXX11_HDR_RANDOM
  31. # define BOOST_NO_CXX11_HDR_RATIO
  32. # define BOOST_NO_CXX11_HDR_REGEX
  33. # define BOOST_NO_CXX11_HDR_SYSTEM_ERROR
  34. # define BOOST_NO_CXX11_HDR_THREAD
  35. # define BOOST_NO_CXX11_HDR_TUPLE
  36. # define BOOST_NO_CXX11_HDR_TYPE_TRAITS
  37. # define BOOST_NO_CXX11_HDR_TYPEINDEX
  38. # define BOOST_NO_CXX11_HDR_UNORDERED_MAP
  39. # define BOOST_NO_CXX11_HDR_UNORDERED_SET
  40. # define BOOST_NO_CXX11_NUMERIC_LIMITS
  41. # define BOOST_NO_CXX11_ALLOCATOR
  42. # define BOOST_NO_CXX11_ATOMIC_SMART_PTR
  43. # define BOOST_NO_CXX11_SMART_PTR
  44. # define BOOST_NO_CXX11_HDR_FUNCTIONAL
  45. # define BOOST_NO_CXX11_HDR_ATOMIC
  46. # define BOOST_NO_CXX11_STD_ALIGN
  47. # define BOOST_NO_CXX11_ADDRESSOF
  48. #if defined(__has_include)
  49. #if !__has_include(<shared_mutex>)
  50. # define BOOST_NO_CXX14_HDR_SHARED_MUTEX
  51. #elif __cplusplus < 201402
  52. # define BOOST_NO_CXX14_HDR_SHARED_MUTEX
  53. #endif
  54. #else
  55. # define BOOST_NO_CXX14_HDR_SHARED_MUTEX
  56. #endif
  57. #define BOOST_STDLIB "Visual Age default standard library"