From 8b2c5b3f0098028a1f627447fd2eb87277b4e13c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Fonseca?= Date: Thu, 22 Jan 2009 14:29:01 +0000 Subject: glut: Don't include mesa_wgl.h on MinGW builds. windows.h header recent MinGW versions already declare the WGL API, and including mesa_wgl.h actually cause build failures. --- include/GL/glut.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/include/GL/glut.h b/include/GL/glut.h index 4922536..45fed43 100644 --- a/include/GL/glut.h +++ b/include/GL/glut.h @@ -11,7 +11,10 @@ #include #if defined(__MINGW32__) -#include +# ifndef WIN32_LEAN_AND_MEAN +# define WIN32_LEAN_AND_MEAN 1 +# endif +# include #endif #ifdef __cplusplus -- cgit v1.2.1