digitalmars.hpp 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  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_STATIC_ASSERT
  66. #define BOOST_NO_CXX11_TEMPLATE_ALIASES
  67. #define BOOST_NO_CXX11_UNICODE_LITERALS
  68. #define BOOST_NO_CXX11_VARIADIC_TEMPLATES
  69. #define BOOST_NO_CXX11_UNIFIED_INITIALIZATION_SYNTAX
  70. #define BOOST_NO_CXX11_USER_DEFINED_LITERALS
  71. #define BOOST_NO_CXX11_ALIGNAS
  72. #define BOOST_NO_CXX11_TRAILING_RESULT_TYPES
  73. #define BOOST_NO_CXX11_INLINE_NAMESPACES
  74. #if (__DMC__ <= 0x840)
  75. #error "Compiler not supported or configured - please reconfigure"
  76. #endif
  77. //
  78. // last known and checked version is ...:
  79. #if (__DMC__ > 0x848)
  80. # if defined(BOOST_ASSERT_CONFIG)
  81. # error "Unknown compiler version - please run the configure tests and report the results"
  82. # endif
  83. #endif