[722/906] gl: Fix build on Win32

1) Need to include GL/glext.h on W32 to provide necessary macros
2) W32 macros that pre-processor has by default are different for different
   toolchains. Borland uses __WIN32__, everyone else has _WIN32, so check both.

Side-note: glext.h is not supplied by mingw-w64 at the moment, but can be
downloaded from http://www.opengl.org/registry/

https://bugzilla.gnome.org/show_bug.cgi?id=703364
This commit is contained in:
Руслан Ижбулатов 2013-07-01 01:36:35 +04:00 committed by Matthew Waters
parent c07d72f768
commit 89a6d7ef5d

View file

@ -40,7 +40,7 @@
# else # else
# include <GL/glu.h> # include <GL/glu.h>
# include <GL/gl.h> # include <GL/gl.h>
# if __WIN32__ # if __WIN32__ || _WIN32
# include <GL/glext.h> # include <GL/glext.h>
# endif # endif
# endif # endif