Committing in .

OpenVMS compile support updates

 Modified Files:
 	wxWidgets/setup.h_vms wxWidgets/src/common/descrip.mms
 	wxWidgets/src/common/string.cpp
 ----------------------------------------------------------------------


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@32576 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Jouk Jansen
2005-03-03 12:52:43 +00:00
parent 7adf0b4de2
commit dbbd41ae33
3 changed files with 6 additions and 16 deletions

View File

@@ -1842,8 +1842,8 @@ int wxString::PrintfV(const wxChar* pszFormat, va_list argptr)
// also, it may return an errno may be something like EILSEQ,
// in which case we need to break out
if ( (len >= 0 && len <= size)
// No EOVERFLOW on Windows nor Palm 6.0
#if !defined(__WXMSW__) && !defined(__WXPALMOS__)
// No EOVERFLOW on Windows nor Palm 6.0 nor OpenVMS
#if !defined(__WXMSW__) && !defined(__WXPALMOS__) && !defined( __VMS )
|| errno != EOVERFLOW
#endif
)