From bb79508b3d3820bddf7f4a8ed341654475bc8e02 Mon Sep 17 00:00:00 2001 From: Chris Elliott Date: Tue, 28 Apr 2009 07:35:36 +0000 Subject: [PATCH] require BCC 5.82 for templates git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_9_0_BRANCH@60421 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/platform.h | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/include/wx/platform.h b/include/wx/platform.h index 51f7807b66..afe6864097 100644 --- a/include/wx/platform.h +++ b/include/wx/platform.h @@ -320,16 +320,10 @@ /* test for old versions of Borland C, normally need at least 5.82, Turbo - explorer, available for free at http://www.turboexplorer.com/downloads + explorer, available for free at https://downloads.embarcadero.com/free/c_builder */ -#if defined(__BORLANDC__) && (__BORLANDC__ < 0x550) -# error "wxWidgets requires a newer version of Borland, we recommend upgrading to 5.82 (Turbo Explorer). You may at your own risk remove this line and try building but be prepared to get build errors." -#endif /* __BORLANDC__ */ - -#if defined(__BORLANDC__) && (__BORLANDC__ < 0x582) && (__BORLANDC__ > 0x559) -# ifndef _USE_OLD_RW_STL -# error "wxWidgets is incompatible with default Borland C++ 5.6 STL library, please add -D_USE_OLD_RW_STL to your bcc32.cfg to use RogueWave STL implementation." -# endif +#if defined(__BORLANDC__) && (__BORLANDC__ < 0x582) +# error "wxWidgets requires a newer version of Borland, we require upgrading to 5.82 (Turbo Explorer). You may at your own risk remove this line and try building but be prepared to get build errors." #endif /* __BORLANDC__ */