From 356c71cfd2e068359d499e428bba55563d03bd9f Mon Sep 17 00:00:00 2001 From: "John F. Fay" Date: Mon, 9 Mar 2009 14:41:59 +0000 Subject: [PATCH] Making the definition of "WIN32_LEAN_AND_MEAN" conditional to enhance compatibility with GLEW per suggestion by Diederick C. Niehorster in e-mail dated Mon 3/9/2009 8:06 AM git-svn-id: svn+ssh://svn.code.sf.net/p/freeglut/code/trunk/freeglut/freeglut@794 7f0cb862-5218-0410-a997-914c9d46530a --- include/GL/freeglut_std.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/include/GL/freeglut_std.h b/include/GL/freeglut_std.h index 0545e64..f799233 100644 --- a/include/GL/freeglut_std.h +++ b/include/GL/freeglut_std.h @@ -54,7 +54,9 @@ # endif # endif -# define WIN32_LEAN_AND_MEAN +# ifndef WIN32_LEAN_AND_MEAN +# define WIN32_LEAN_AND_MEAN 1 +# endif # define NOMINMAX # include -- 1.7.10.4