Committing in .
VMS patch Modified Files: wxWindows/include/wx/defs.h git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@4499 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -30,7 +30,7 @@
|
|||||||
#if defined(__unix) || defined(__unix__) || defined(____SVR4____) || \
|
#if defined(__unix) || defined(__unix__) || defined(____SVR4____) || \
|
||||||
defined(__LINUX__) || defined(__sgi ) || \
|
defined(__LINUX__) || defined(__sgi ) || \
|
||||||
defined(__hpux) || defined(sun) || defined(__SUN__) || defined(_AIX) || \
|
defined(__hpux) || defined(sun) || defined(__SUN__) || defined(_AIX) || \
|
||||||
defined(__EMX__)
|
defined(__EMX__) || defined( __VMS )
|
||||||
|
|
||||||
#define __UNIX_LIKE__
|
#define __UNIX_LIKE__
|
||||||
|
|
||||||
@@ -126,7 +126,9 @@
|
|||||||
// Digital Unix C++ compiler only defines this symbol for .cxx and .hxx files,
|
// Digital Unix C++ compiler only defines this symbol for .cxx and .hxx files,
|
||||||
// so define it ourselves
|
// so define it ourselves
|
||||||
#ifdef __DECCXX
|
#ifdef __DECCXX
|
||||||
#define __cplusplus
|
#ifndef VMS
|
||||||
|
# define __cplusplus
|
||||||
|
#endif
|
||||||
#endif // __DECCXX
|
#endif // __DECCXX
|
||||||
|
|
||||||
// Resolves linking problems under HP-UX
|
// Resolves linking problems under HP-UX
|
||||||
@@ -299,7 +301,9 @@
|
|||||||
// NB: of course, this doesn't replace the standard type, because, for
|
// NB: of course, this doesn't replace the standard type, because, for
|
||||||
// example, overloading based on bool/int parameter doesn't work and
|
// example, overloading based on bool/int parameter doesn't work and
|
||||||
// so should be avoided in portable programs
|
// so should be avoided in portable programs
|
||||||
typedef unsigned int bool;
|
#ifndef VMS
|
||||||
|
typedef unsigned int bool;
|
||||||
|
#endif
|
||||||
#endif // bool
|
#endif // bool
|
||||||
|
|
||||||
typedef short int WXTYPE;
|
typedef short int WXTYPE;
|
||||||
|
Reference in New Issue
Block a user