Updates for namespace issues, plus a few more supported features.

[SVN r34368]
This commit is contained in:
John Maddock
2006-06-22 12:05:23 +00:00
parent 2d0879e400
commit 55524c5108

View File

@ -33,7 +33,22 @@
#if (__DMC__ >= 0x840)
#define BOOST_HAS_DIRENT_H
#define BOOST_HAS_STDINT_H
#define BOOST_HAS_WINTHREADS
#if _MT
# define BOOST_HAS_WINTHREADS
#endif
#endif
#if (__DMC__ >= 0x847)
#define BOOST_HAS_EXPM1
#define BOOST_HAS_LOG1P
#endif
//
// Is this really the best way to detect whether the std lib is in namespace std?
//
#include <cstddef>
#if !defined(__STL_IMPORT_VENDOR_CSTD) && !defined(_STLP_IMPORT_VENDOR_CSTD)
# define BOOST_NO_STDC_NAMESPACE
#endif
@ -47,3 +62,4 @@
# error "Unknown compiler version - please run the configure tests and report the results"
# endif
#endif