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
This commit is contained in:
Pascal Massimino 2012-01-12 04:51:39 -08:00
parent 716d1d7f87
commit 2e74ec8b5f

View File

@ -12,7 +12,7 @@
#ifndef WEBP_EXAMPLES_STOPWATCH_H_ #ifndef WEBP_EXAMPLES_STOPWATCH_H_
#define WEBP_EXAMPLES_STOPWATCH_H_ #define WEBP_EXAMPLES_STOPWATCH_H_
#ifdef _WIN32 #if defined _WIN32 && !defined __GNUC__
#include <windows.h> #include <windows.h>
typedef LARGE_INTEGER Stopwatch; typedef LARGE_INTEGER Stopwatch;