force wxUSE_IOSTREAMH to 0 with VC 7.1

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@20751 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2003-05-27 22:04:50 +00:00
parent 6c33b24c53
commit eb382f3e5e
2 changed files with 14 additions and 3 deletions

View File

@@ -906,7 +906,9 @@
#define REMOVE_UNUSED_ARG 1
// VC++ 4.2 and above allows <iostream> and <iostream.h> but you can't mix
// them. Set to 1 for <iostream.h>, 0 for <iostream>
// them. Set to 1 for <iostream.h>, 0 for <iostream>. Note that VC++ 7.1
// and later doesn't support wxUSE_IOSTREAMH == 1 and so <iostream> will be
// used anyhow.
//
// Default is 1.
//

View File

@@ -85,6 +85,15 @@
/* check the consistency of the settings in setup.h */
#include "wx/chkconf.h"
/*
some compilers don't support iostream.h any longer, so override the users
setting here in such case.
*/
#if defined(_MSC_VER) && (_MSC_VER >= 1310)
#undef wxUSE_IOSTREAMH
#define wxUSE_IOSTREAMH 0
#endif /* compilers not supporting iostream.h */
/*
old C++ headers (like <iostream.h>) declare classes in the global namespace
while the new, standard ones (like <iostream>) do it in std:: namespace
@@ -93,9 +102,9 @@
either case
*/
#if !wxUSE_IOSTREAMH
#define wxSTD std::
#define wxSTD std::
#else
#define wxSTD
#define wxSTD
#endif
/*