set wxUSE_STD_IOSTREAM to 0 for eVC which doesn't provide the standard streams (see #10718)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@60340 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2009-04-25 13:08:38 +00:00
parent 6ecc0896d5
commit 8f823da835

View File

@@ -28,6 +28,12 @@
#define wxUSE_DISPLAY 0
#endif
// eVC doesn't have standard streams
#if !wxCHECK_VISUALC_VERSION(8)
#undef wxUSE_STD_IOSTREAM
#define wxUSE_STD_IOSTREAM 0
#endif
// wxFSVolume currently doesn't compile under CE and it's not clear if it makes
// sense at all there (the drives and their names are fixed on CE systems)
#undef wxUSE_FSVOLUME