HP-UX gcc compilation fixes

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2528 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 1999-05-21 11:38:59 +00:00
parent 3135da7134
commit 508203b056

View File

@ -53,7 +53,7 @@
#endif #endif
#endif // Sun #endif // Sun
#ifdef __hpux #if defined(__hpux) && !defined(__HPUX__)
#define __HPUX__ #define __HPUX__
#endif // HP-UX #endif // HP-UX
@ -108,11 +108,14 @@
////////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////////
// Currently Only MS-Windows/NT, XView and Motif are supported // Currently Only MS-Windows/NT, XView and Motif are supported
// //
#if defined(__HPUX__) && !defined(__WXMOTIF__) #if defined(__HPUX__) && !defined(__WXGTK__)
# define __WXMOTIF__ #ifndef __WXMOTIF__
#define __WXMOTIF__
#endif // __WXMOTIF__
#endif #endif
#if defined(__WXMOTIF__) #if defined(__WXMOTIF__)
# define __X__ #define __X__
#endif #endif
#ifdef __WXMSW__ #ifdef __WXMSW__