From 701ba023a2d047ef27befc800c428b1dbcf13cff Mon Sep 17 00:00:00 2001 From: Bjoern Breitmeyer Date: Mon, 7 Oct 2013 14:17:00 +0200 Subject: Fixes windows ce build The windows file seems to handle ce too in the new version of libtiff. Only the include and the not defined error handle were a problem. The error handler ifndef _WIN32_WCE can be removed as Qt builds libtiff without the gui integration. Change-Id: Idb025f64fc31d580566d8ce248137e57d01e96b2 Reviewed-by: Friedemann Kleint --- src/3rdparty/libtiff/libtiff/tiffiop.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'src/3rdparty/libtiff/libtiff/tiffiop.h') diff --git a/src/3rdparty/libtiff/libtiff/tiffiop.h b/src/3rdparty/libtiff/libtiff/tiffiop.h index 53357d8..916c998 100644 --- a/src/3rdparty/libtiff/libtiff/tiffiop.h +++ b/src/3rdparty/libtiff/libtiff/tiffiop.h @@ -37,7 +37,11 @@ #endif #ifdef HAVE_SYS_TYPES_H -# include +# ifdef Q_OS_WINCE +# include +# else +# include +# endif #endif #ifdef HAVE_STRING_H -- cgit v1.2.3