From: José Fonseca Date: Tue, 24 Jun 2008 01:17:32 +0000 (+0900) Subject: mesa: Don't include sys/types.h on WinCE. X-Git-Tag: 062012170305~17580^2~390^2~1118 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=543bba6ee3a1b3a947d1dfaca75e820ef7b98843;p=profile%2Fivi%2Fmesa.git mesa: Don't include sys/types.h on WinCE. We probably shouldn't be including sys/types.h at all, but let's leave that for another time. --- diff --git a/include/GL/internal/glcore.h b/include/GL/internal/glcore.h index fc0aaf3..d62f31b 100644 --- a/include/GL/internal/glcore.h +++ b/include/GL/internal/glcore.h @@ -36,7 +36,9 @@ ** */ +#if !defined(_WIN32_WCE) #include +#endif #define GL_CORE_SGI 1 #define GL_CORE_MESA 2