forked from boostorg/config
29 lines
842 B
C++
29 lines
842 B
C++
// Copyright (C) Christof Meerwald 2003
|
|
// Copyright (C) Dan Watkins 2003
|
|
//
|
|
// Use, modification and distribution are subject to the
|
|
// Boost Software License, Version 1.0. (See accompanying file
|
|
// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
// Digital Mars C++ compiler setup:
|
|
#define BOOST_COMPILER __DMC_VERSION_STRING__
|
|
|
|
#define BOOST_HAS_LONG_LONG
|
|
|
|
#define BOOST_NO_TEMPLATE_TEMPLATES
|
|
//#define NEEDS_PASTING_TOKEN_FOR_JUXTAPOSING
|
|
|
|
#define BOOST_NO_DEPENDENT_TYPES_IN_TEMPLATE_VALUE_PARAMETERS
|
|
#define BOOST_NO_ARRAY_TYPE_SPECIALIZATIONS
|
|
|
|
// check for exception handling support:
|
|
#ifndef _CPPUNWIND
|
|
# define BOOST_NO_EXCEPTIONS
|
|
#endif
|
|
|
|
#if (__DMC__ < 0x833)
|
|
# if defined(BOOST_ASSERT_CONFIG)
|
|
# error "Unknown compiler version - please run the configure tests and report the results"
|
|
# endif
|
|
#endif
|