From 543bba6ee3a1b3a947d1dfaca75e820ef7b98843 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jos=C3=A9=20Fonseca?= Date: Tue, 24 Jun 2008 10:17:32 +0900 Subject: [PATCH] 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. --- include/GL/internal/glcore.h | 2 ++ 1 file changed, 2 insertions(+) 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 -- 2.7.4