]> git.saurik.com Git - wxWidgets.git/commitdiff
Compilation fixes for djgpp
authorMichael Wetherell <mike.wetherell@ntlworld.com>
Fri, 22 Apr 2005 13:18:47 +0000 (13:18 +0000)
committerMichael Wetherell <mike.wetherell@ntlworld.com>
Fri, 22 Apr 2005 13:18:47 +0000 (13:18 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33820 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/tiff/tiffcomp.h
src/tiff/tiffiop.h

index 65d929cf38e5002d4f15882042b1e26cf6dde9a4..c421273e73634e52e7e247059833eb5d6abb77c5 100644 (file)
@@ -87,6 +87,8 @@
 #define        BSDTYPES
 #elif defined(OS2_16) || defined(OS2_32)
 #define        BSDTYPES
+#elif defined(__MSDOS__)
+#define        BSDTYPES
 #elif defined(__acornriscos)
 #include <stdlib.h>
 #define        BSDTYPES
index 24de55df1bf60d22dac375a5f23b2a0a5d5226f2..b2286162fd7a20b03ca2fc05f5039cddbadf9031 100644 (file)
@@ -34,7 +34,7 @@
  * a port.h file that reflects the system capabilities.
  * Doing this obviates all the dreck done in tiffcomp.h.
  */
-#if defined(unix) || defined(__unix)
+#if (defined(unix) || defined(__unix)) && !defined(__DJGPP__)
 #include "port.h"
 #include "tiffconf.h"
 #else