Update version check for latest and greatest version.

[SVN r31937]
This commit is contained in:
John Maddock
2005-12-06 17:18:51 +00:00
parent f174a2b657
commit a1b668e61c

View File

@ -163,8 +163,9 @@
# error "Compiler not supported or configured - please reconfigure" # error "Compiler not supported or configured - please reconfigure"
#endif #endif
// //
// last known and checked version is 1536 (Builder X preview): // last known and checked version is 1536 (Builder X preview)
#if (__BORLANDC__ > 1536) // Or 0x580 (Borland C++ Builder 6 2006 Preview):
#if (__BORLANDC__ > 1536) || ((__BORLANDC__ < 0x600) && (__BORLANDC__ > 0x580))
# if defined(BOOST_ASSERT_CONFIG) # if defined(BOOST_ASSERT_CONFIG)
# error "Unknown compiler version - please run the configure tests and report the results" # error "Unknown compiler version - please run the configure tests and report the results"
# else # else
@ -179,3 +180,4 @@