]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/filefn.h
Motif compilation fixes (now ok)
[wxWidgets.git] / include / wx / filefn.h
index b1523f117cfd6c0aab5cc1d1d54429687c7f5236..777973aabd9b496df97158bfcdf705efd3bc19bd 100644 (file)
     typedef long off_t;
 #endif
 
-#if defined(__VISUALC__) || defined(__MWERKS__)
+#if defined(__VISUALC__) || ( defined(__MWERKS__) && defined( __INTEL__) )
     typedef _off_t off_t;
 #elif defined(__BORLANDC__) && defined(__WIN16__)
     typedef long off_t;
 #elif defined(__SC__)
     typedef long off_t;
+#elif defined(__MWERKS__) && !defined(__INTEL__)
+    typedef long off_t;
 #endif
 
 const off_t wxInvalidOffset = (off_t)-1;