digitalmars.hpp 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. // Copyright (C) Christof Meerwald 2003
  2. // Copyright (C) Dan Watkins 2003
  3. //
  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. // Digital Mars C++ compiler setup:
  8. #define BOOST_COMPILER __DMC_VERSION_STRING__
  9. #define BOOST_HAS_LONG_LONG
  10. #define BOOST_HAS_PRAGMA_ONCE
  11. #if !defined(BOOST_STRICT_CONFIG)
  12. #define BOOST_NO_MEMBER_TEMPLATE_FRIENDS
  13. #define BOOST_NO_OPERATORS_IN_NAMESPACE
  14. #define BOOST_NO_UNREACHABLE_RETURN_DETECTION
  15. #define BOOST_NO_SFINAE
  16. #define BOOST_NO_USING_TEMPLATE
  17. #define BOOST_FUNCTION_SCOPE_USING_DECLARATION_BREAKS_ADL
  18. #endif
  19. //
  20. // has macros:
  21. #define BOOST_HAS_DIRENT_H
  22. #define BOOST_HAS_STDINT_H
  23. #define BOOST_HAS_WINTHREADS
  24. #if (__DMC__ >= 0x847)
  25. #define BOOST_HAS_EXPM1
  26. #define BOOST_HAS_LOG1P
  27. #endif
  28. //
  29. // Is this really the best way to detect whether the std lib is in namespace std?
  30. //
  31. #ifdef __cplusplus
  32. #include <cstddef>
  33. #endif
  34. #if !defined(__STL_IMPORT_VENDOR_CSTD) && !defined(_STLP_IMPORT_VENDOR_CSTD)
  35. # define BOOST_NO_STDC_NAMESPACE
  36. #endif
  37. // check for exception handling support:
  38. #if !defined(_CPPUNWIND) && !defined(BOOST_NO_EXCEPTIONS)
  39. # define BOOST_NO_EXCEPTIONS
  40. #endif
  41. //
  42. // C++0x features
  43. //
  44. #define BOOST_NO_CXX11_AUTO_DECLARATIONS
  45. #define BOOST_NO_CXX11_AUTO_MULTIDECLARATIONS
  46. #define BOOST_NO_CXX11_CHAR16_T
  47. #define BOOST_NO_CXX11_CHAR32_T
  48. #define BOOST_NO_CXX11_CONSTEXPR
  49. #define BOOST_NO_CXX11_DECLTYPE
  50. #define BOOST_NO_CXX11_DECLTYPE_N3276
  51. #define BOOST_NO_CXX11_DEFAULTED_FUNCTIONS
  52. #define BOOST_NO_CXX11_DELETED_FUNCTIONS
  53. #define BOOST_NO_CXX11_EXPLICIT_CONVERSION_OPERATORS
  54. #define BOOST_NO_CXX11_EXTERN_TEMPLATE
  55. #define BOOST_NO_CXX11_HDR_INITIALIZER_LIST
  56. #define BOOST_NO_CXX11_LAMBDAS
  57. #define BOOST_NO_CXX11_LOCAL_CLASS_TEMPLATE_PARAMETERS
  58. #define BOOST_NO_CXX11_NOEXCEPT
  59. #define BOOST_NO_CXX11_NULLPTR
  60. #define BOOST_NO_CXX11_RANGE_BASED_FOR
  61. #define BOOST_NO_CXX11_RAW_LITERALS
  62. #define BOOST_NO_CXX11_RVALUE_REFERENCES
  63. #define BOOST_NO_CXX11_SCOPED_ENUMS
  64. #define BOOST_NO_SFINAE_EXPR
  65. #define BOOST_NO_CXX11_SFINAE_EXPR
  66. #define BOOST_NO_CXX11_STATIC_ASSERT
  67. #define BOOST_NO_CXX11_TEMPLATE_ALIASES
  68. #define BOOST_NO_CXX11_UNICODE_LITERALS
  69. #define BOOST_NO_CXX11_VARIADIC_TEMPLATES
  70. #define BOOST_NO_CXX11_UNIFIED_INITIALIZATION_SYNTAX
  71. #define BOOST_NO_CXX11_USER_DEFINED_LITERALS
  72. #define BOOST_NO_CXX11_ALIGNAS
  73. #define BOOST_NO_CXX11_TRAILING_RESULT_TYPES
  74. #define BOOST_NO_CXX11_INLINE_NAMESPACES
  75. #define BOOST_NO_CXX11_REF_QUALIFIERS
  76. #define BOOST_NO_CXX11_FINAL
  77. #define BOOST_NO_CXX11_THREAD_LOCAL
  78. // C++ 14:
  79. #if !defined(__cpp_aggregate_nsdmi) || (__cpp_aggregate_nsdmi < 201304)
  80. # define BOOST_NO_CXX14_AGGREGATE_NSDMI
  81. #endif
  82. #if !defined(__cpp_binary_literals) || (__cpp_binary_literals < 201304)
  83. # define BOOST_NO_CXX14_BINARY_LITERALS
  84. #endif
  85. #if !defined(__cpp_constexpr) || (__cpp_constexpr < 201304)
  86. # define BOOST_NO_CXX14_CONSTEXPR
  87. #endif
  88. #if !defined(__cpp_decltype_auto) || (__cpp_decltype_auto < 201304)
  89. # define BOOST_NO_CXX14_DECLTYPE_AUTO
  90. #endif
  91. #if (__cplusplus < 201304) // There's no SD6 check for this....
  92. # define BOOST_NO_CXX14_DIGIT_SEPARATORS
  93. #endif
  94. #if !defined(__cpp_generic_lambdas) || (__cpp_generic_lambdas < 201304)
  95. # define BOOST_NO_CXX14_GENERIC_LAMBDAS
  96. #endif
  97. #if !defined(__cpp_init_captures) || (__cpp_init_captures < 201304)
  98. # define BOOST_NO_CXX14_INITIALIZED_LAMBDA_CAPTURES
  99. #endif
  100. #if !defined(__cpp_return_type_deduction) || (__cpp_return_type_deduction < 201304)
  101. # define BOOST_NO_CXX14_RETURN_TYPE_DEDUCTION
  102. #endif
  103. #if !defined(__cpp_variable_templates) || (__cpp_variable_templates < 201304)
  104. # define BOOST_NO_CXX14_VARIABLE_TEMPLATES
  105. #endif
  106. // C++17
  107. #if !defined(__cpp_structured_bindings) || (__cpp_structured_bindings < 201606)
  108. # define BOOST_NO_CXX17_STRUCTURED_BINDINGS
  109. #endif
  110. #if !defined(__cpp_inline_variables) || (__cpp_inline_variables < 201606)
  111. # define BOOST_NO_CXX17_INLINE_VARIABLES
  112. #endif
  113. #if !defined(__cpp_fold_expressions) || (__cpp_fold_expressions < 201603)
  114. # define BOOST_NO_CXX17_FOLD_EXPRESSIONS
  115. #endif
  116. #if !defined(__cpp_if_constexpr) || (__cpp_if_constexpr < 201606)
  117. # define BOOST_NO_CXX17_IF_CONSTEXPR
  118. #endif
  119. #if (__DMC__ <= 0x840)
  120. #error "Compiler not supported or configured - please reconfigure"
  121. #endif
  122. //
  123. // last known and checked version is ...:
  124. #if (__DMC__ > 0x848)
  125. # if defined(BOOST_ASSERT_CONFIG)
  126. # error "boost: Unknown compiler version - please run the configure tests and report the results"
  127. # endif
  128. #endif