]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/chkconf.h
Significantly improved wxPropertyGrid's top-level parent change detection code (fixes...
[wxWidgets.git] / include / wx / msw / chkconf.h
index c5d0b77e83d29f933bd302ef8ef1ec9ae0373198..b62f30c5c15a3fb2689a01f25421cfb1307835c7 100644 (file)
 /*
    Compiler-specific checks.
  */
-#if defined(__BORLANDC__) && (__BORLANDC__ < 0x500)
+
+// Borland
+#ifdef __BORLANDC__
+
+#if __BORLANDC__ < 0x500
     /* BC++ 4.0 can't compile JPEG library */
 #   undef wxUSE_LIBJPEG
 #   define wxUSE_LIBJPEG 0
 #endif
 
 /* wxUSE_DEBUG_NEW_ALWAYS = 1 not compatible with BC++ in DLL mode */
-#if defined(__BORLANDC__) && (defined(WXMAKINGDLL) || defined(WXUSINGDLL))
+#if defined(WXMAKINGDLL) || defined(WXUSINGDLL)
 #   undef wxUSE_DEBUG_NEW_ALWAYS
 #   define wxUSE_DEBUG_NEW_ALWAYS 0
 #endif
 
+/* compiling src/msw/gdiplus.cpp results in "macro expansion too long" error */
+#undef wxUSE_GRAPHICS_CONTEXT
+#define wxUSE_GRAPHICS_CONTEXT 0
+
+#endif /* __BORLANDC__ */
+
 /* DMC++ doesn't have definitions for date picker control, so use generic control
  */
 #ifdef __DMC__
 #   define wxUSE_POSTSCRIPT 1
 #endif
 
-/* VC6 and 7 currently can't handle template Connect() overloads: */
-#if !wxEVENTS_COMPATIBILITY_2_8
-#   if defined(__VISUALC__) && !wxCHECK_VISUALC_VERSION(8)
-#       undef wxEVENTS_COMPATIBILITY_2_8
-#       define wxEVENTS_COMPATIBILITY_2_8 1
-#   endif
-#endif
-
 #endif /* _WX_MSW_CHKCONF_H_ */