From 1bfb7cc63fa325ab58d069267da7feaae0056280 Mon Sep 17 00:00:00 2001 From: =?utf8?q?W=C5=82odzimierz=20Skiba?= Date: Mon, 9 Aug 2004 13:08:56 +0000 Subject: [PATCH] wxUSE_IOSTREAMH always 0 for MinGW (finally closed patch #910058) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@28723 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/platform.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/include/wx/platform.h b/include/wx/platform.h index 6518f7396d..c7ec886496 100644 --- a/include/wx/platform.h +++ b/include/wx/platform.h @@ -204,7 +204,10 @@ #elif defined(__DMC__) || defined(__WATCOMC__) # undef wxUSE_IOSTREAMH # define wxUSE_IOSTREAMH 1 -#endif /* compilers not supporting iostream.h */ +#elif defined(__MINGW32__) +# undef wxUSE_IOSTREAMH +# define wxUSE_IOSTREAMH 0 +#endif /* compilers with/without iostream.h */ /* old C++ headers (like ) declare classes in the global namespace -- 2.50.0