From 63ef7db3e9344e4b1db68e926f3d4ee5f31dc959 Mon Sep 17 00:00:00 2001 From: Chris Elliott Date: Thu, 25 Oct 2007 11:08:10 +0000 Subject: [PATCH] allow Borland 5.5 again git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@49421 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/platform.h | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/include/wx/platform.h b/include/wx/platform.h index 9076e454eb..b11bad042a 100644 --- a/include/wx/platform.h +++ b/include/wx/platform.h @@ -257,11 +257,15 @@ #endif -/* test for old versions of Borland C, need at least 5.82, Turbo explorer, +/* test for old versions of Borland C, normally need at least 5.82, Turbo explorer, available for free at http://www.turboexplorer.com/downloads */ -#if defined(__BORLANDC__) && (__BORLANDC__ < 0x582) -#error "This version of wxWidgets requires at least Borland 5.82 (Turbo Explorer); You may at your own risk remove this line and try your system" +#if defined(__BORLANDC__) && (__BORLANDC__ < 0x550) +#error "This version of wxWidgets requires a newer version of Borland - we recommend 5.82 (Turbo Explorer); You may at your own risk remove this line and try your system" +#endif /* __BORLANDC__ */ + +#if defined(__BORLANDC__) && (__BORLANDC__ < 0x582) && (__BORLANDC__ > 0x559) +#error "This version of wxWidgets has problems with Borland 5.6; we recommend getting Borland 5.82 (Turbo Explorer); You may at your own risk remove this line and try your system" #endif /* __BORLANDC__ */ -- 2.47.2