From 01fe050c1738fa8c7799830a271e365e424b1621 Mon Sep 17 00:00:00 2001 From: Guillermo Rodriguez Garcia Date: Sat, 8 Jan 2000 16:07:41 +0000 Subject: [PATCH] ?? git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@5303 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/tiff/tiffcomp.h | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/tiff/tiffcomp.h b/src/tiff/tiffcomp.h index fc7198019f..48ccfcb1d9 100644 --- a/src/tiff/tiffcomp.h +++ b/src/tiff/tiffcomp.h @@ -83,10 +83,9 @@ #include #define BSDTYPES #define HAVE_UNISTD_H 0 -#elif defined(_WINDOWS) || defined(__WIN32__) || defined(_Windows) -# if !defined(__MINGW32__) /* GRG */ -# define BSDTYPES -# endif +/* GRG: added check for MINGW32 */ +#elif (defined(_WINDOWS) || defined(__WIN32__) || defined(_Windows)) && !defined(__MINGW32__) +#define BSDTYPES #elif defined(OS2_16) || defined(OS2_32) #define BSDTYPES #elif defined(__acornriscos) -- 2.45.2