From 9b9483c7fd11ba8386d4c7ed3b5d701dfeae48e9 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sat, 16 Feb 2008 15:56:02 +0000 Subject: [PATCH] turn wxUSE_STD_IOSTREAM on by default (except for the compilers which are too broken) (should have been part of r51844) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@51847 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- setup.h.in | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/setup.h.in b/setup.h.in index 95fdf6c7d9..c7a3321653 100644 --- a/setup.h.in +++ b/setup.h.in @@ -200,15 +200,17 @@ #define wxUSE_STREAMS 0 -#define wxUSE_STD_IOSTREAM 0 - #if defined(__DMC__) || defined(__WATCOMC__) \ || (defined(_MSC_VER) && _MSC_VER < 1200) - #define wxUSE_STD_STRING 0 + #define wxUSE_STD_DEFAULT 0 #else - #define wxUSE_STD_STRING 0 + #define wxUSE_STD_DEFAULT 0 #endif +#define wxUSE_STD_IOSTREAM wxUSE_STD_DEFAULT + +#define wxUSE_STD_STRING wxUSE_STD_DEFAULT + #define wxUSE_PRINTF_POS_PARAMS 0