DJGPP support in libtiff (what else can I do that to touch libtiff headers?)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13034 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Václav Slavík
2001-12-15 23:18:18 +00:00
parent d3b4d71020
commit c1725ec7f3
2 changed files with 3 additions and 1 deletions

View File

@@ -85,6 +85,8 @@
#define HAVE_UNISTD_H 0
#elif defined(_WINDOWS) || defined(__WIN32__) || defined(_Windows)
#define BSDTYPES
#elif defined(__DJGPP__)
#define BSDTYPES
#elif defined(OS2_16) || defined(OS2_32)
#define BSDTYPES
#elif defined(__acornriscos)

View 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