From d6707afb72450475b0742451289659ca2452ad11 Mon Sep 17 00:00:00 2001 From: Guillermo Rodriguez Garcia Date: Fri, 7 Jan 2000 16:26:00 +0000 Subject: [PATCH] mingw32 specific compile fix git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@5293 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/tiff/tiffcomp.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/tiff/tiffcomp.h b/src/tiff/tiffcomp.h index 56e61e0522..fc7198019f 100644 --- a/src/tiff/tiffcomp.h +++ b/src/tiff/tiffcomp.h @@ -84,7 +84,9 @@ #define BSDTYPES #define HAVE_UNISTD_H 0 #elif defined(_WINDOWS) || defined(__WIN32__) || defined(_Windows) -#define BSDTYPES +# if !defined(__MINGW32__) /* GRG */ +# define BSDTYPES +# endif #elif defined(OS2_16) || defined(OS2_32) #define BSDTYPES #elif defined(__acornriscos) -- 2.45.2