From 2e74ec8b5fae9799610266b6f0ee77b7a4dcbf20 Mon Sep 17 00:00:00 2001 From: Pascal Massimino Date: Thu, 12 Jan 2012 04:51:39 -0800 Subject: [PATCH] fix compile under MINGW there was a type conflict around INT32 (in libjpeg). Patch by nipmarsh Issue 102: http://code.google.com/p/webp/issues/detail?id=102 Change-Id: I6425b6b9b9861bcaa8bb1adc8a78541e44031a6e --- examples/stopwatch.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/stopwatch.h b/examples/stopwatch.h index 1a0cf291..de49ffe2 100644 --- a/examples/stopwatch.h +++ b/examples/stopwatch.h @@ -12,7 +12,7 @@ #ifndef WEBP_EXAMPLES_STOPWATCH_H_ #define WEBP_EXAMPLES_STOPWATCH_H_ -#ifdef _WIN32 +#if defined _WIN32 && !defined __GNUC__ #include typedef LARGE_INTEGER Stopwatch;