64a65 > #define DFMT_APPLE_INTEL 0x4441 739c740,747 < #define DF_MT DFMT_APPLE --- > #ifdef __i386 > #ifndef INTEL86 > #define INTEL86 /* we need this Intel define or bad things happen later */ > #endif /* INTEL86 */ > #define DF_MT DFMT_APPLE_INTEL > #else > #define DF_MT DFMT_APPLE > #endif /* __i386 */ 888,889c896,897 < /* Metrowerks Mac compiler defines some PC stuff so need to exclude this on the Mac */ < #if !(defined(macintosh) || defined(MAC)) --- > /* Metrowerks Mac and Apple Intel compiler defines some PC stuff so need to exclude this on the Mac */ > #if !(defined(macintosh) || defined(MAC) || defined (__APPLE__))