enable wxHAS_RAW_BITMAP for OpenWatcom 1.8 and later

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_9_0_BRANCH@60526 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2009-05-06 11:42:16 +00:00
parent b43378ce72
commit d6fdbbd6b3

View File

@@ -86,10 +86,15 @@
/* Direct access to bitmap data is not implemented in all ports yet */ /* Direct access to bitmap data is not implemented in all ports yet */
#if defined(__WXGTK20__) || defined(__WXMAC__) || defined(__WXDFB__) || \ #if defined(__WXGTK20__) || defined(__WXMAC__) || defined(__WXDFB__) || \
(defined(__WXMSW__) && !defined(__WATCOMC__)) defined(__WXMSW__)
// HP aCC for PA-RISC can't compile rawbmp.h /*
#if !defined(__HP_aCC) || !defined(__hppa) These compilers can't deal with templates in wx/rawbmp.h:
- HP aCC for PA-RISC
- Watcom < 1.8
*/
#if !wxONLY_WATCOM_EARLIER_THAN(1, 8) && \
!(defined(__HP_aCC) && defined(__hppa))
#define wxHAS_RAW_BITMAP #define wxHAS_RAW_BITMAP
#endif #endif
#endif #endif