From 99a62a621b98cd17b2ff0d5ae2e0fd6b7fe79b6e Mon Sep 17 00:00:00 2001 From: John Maddock Date: Fri, 23 Jun 2006 09:33:09 +0000 Subject: [PATCH] Fix error check at the end. [SVN r34378] --- include/boost/config/compiler/digitalmars.hpp | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/include/boost/config/compiler/digitalmars.hpp b/include/boost/config/compiler/digitalmars.hpp index 240c2e3a..d33e540a 100644 --- a/include/boost/config/compiler/digitalmars.hpp +++ b/include/boost/config/compiler/digitalmars.hpp @@ -55,10 +55,15 @@ # define BOOST_NO_EXCEPTIONS #endif -#if (__DMC__ < 0x840) +#if __DMC__ < 0x800 +#error "Compiler not supported or configured - please reconfigure" +#endif +// +// last known and checked version is ...: +#if (__DMC__ > 0x848) # if defined(BOOST_ASSERT_CONFIG) # error "Unknown compiler version - please run the configure tests and report the results" # endif -#endif +