diff options
author | don bright <hugh.m.bright@gmail.com> | 2013-01-26 20:19:42 (GMT) |
---|---|---|
committer | don bright <hugh.m.bright@gmail.com> | 2013-01-26 20:19:42 (GMT) |
commit | d4c15a8fc428b88b52eb1e5c180999725e1cfb2b (patch) | |
tree | 4248529f5c72b2fecc804bb3147eba3ec477926d /src/system-gl.h | |
parent | 743a82148dd2ddfdbd0eba24b208f1249ab4065d (diff) |
fixups for mingw32 cross compilation
Diffstat (limited to 'src/system-gl.h')
-rw-r--r-- | src/system-gl.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/system-gl.h b/src/system-gl.h index 4a8ccac..dd465f6 100644 --- a/src/system-gl.h +++ b/src/system-gl.h @@ -1,6 +1,12 @@ #ifndef SYSTEMGL_H_ #define SYSTEMGL_H_ +#ifdef _WIN32 +// Prevent obtuse compile errors on Win32/mingw32. This is related +// GLU Tessellation callback definitions, and how glew deals with them. +#include <windows.h> +#endif + #include <GL/glew.h> #include <string> |