]> git.saurik.com Git - wxWidgets.git/commitdiff
DMC conflicts with old SC.
authorWłodzimierz Skiba <abx@abx.art.pl>
Thu, 25 Nov 2004 16:53:41 +0000 (16:53 +0000)
committerWłodzimierz Skiba <abx@abx.art.pl>
Thu, 25 Nov 2004 16:53:41 +0000 (16:53 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@30784 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/tiff/tiffcomp.h

index 86c0a15e579bb183e89972f1d6c42bf653d1e3c3..cb4a659191b0c9ee4f0efc3341c419d0fd3cb9b9 100644 (file)
@@ -58,7 +58,7 @@
 
 #include <stdio.h>
 
-#if defined(__PPCC__) || defined(__SC__) || defined(__MRC__)
+#if defined(__PPCC__) || ( defined(__SC__) && !defined(__DMC__) ) || defined(__MRC__)
 #include <types.h>
 #elif !defined(__MWERKS__) && !defined(THINK_C) && !defined(__acornriscos) && !defined(applec)
 #include <sys/types.h>
@@ -79,7 +79,7 @@
  * additional includes are also done to pull in the
  * appropriate definitions we're looking for.
  */
-#if defined(__MWERKS__) || defined(THINK_C) || defined(__PPCC__) || defined(__SC__) || defined(__MRC__)
+#if defined(__MWERKS__) || defined(THINK_C) || defined(__PPCC__) || ( defined(__SC__) && !defined(__DMC__) ) || defined(__MRC__)
 #include <stdlib.h>
 #define        BSDTYPES
 #define        HAVE_UNISTD_H   0
@@ -137,7 +137,7 @@ typedef     unsigned long u_long;
  * stack (when coerced by the compiler).
  */
 /* Note: on MacPowerPC "extended" is undefined. So only use it for 68K-Macs */
-#if defined(__SC__) || defined(THINK_C)
+#if ( defined(__SC__) && !defined(__DMC__) ) || defined(THINK_C)
 typedef extended dblparam_t;
 #else
 typedef double dblparam_t;