From: Michael Wetherell Date: Fri, 22 Apr 2005 13:18:47 +0000 (+0000) Subject: Compilation fixes for djgpp X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/28ceed839c0a867151950f029b6aec07f8a88004 Compilation fixes for djgpp git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33820 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/tiff/tiffcomp.h b/src/tiff/tiffcomp.h index 65d929cf38..c421273e73 100644 --- a/src/tiff/tiffcomp.h +++ b/src/tiff/tiffcomp.h @@ -87,6 +87,8 @@ #define BSDTYPES #elif defined(OS2_16) || defined(OS2_32) #define BSDTYPES +#elif defined(__MSDOS__) +#define BSDTYPES #elif defined(__acornriscos) #include #define BSDTYPES diff --git a/src/tiff/tiffiop.h b/src/tiff/tiffiop.h index 24de55df1b..b2286162fd 100644 --- a/src/tiff/tiffiop.h +++ b/src/tiff/tiffiop.h @@ -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