mirror of https://github.com/godotengine/godot.git
Merge pull request #101177 from akien-mga/1.1
[1.1] Build fixes for modern toolchains + new portable 1.1-stable Linux binaries1.1
commit
eb26ca7ae1
@ -0,0 +1,22 @@
|
||||
diff --git a/drivers/gl_context/glew.h b/drivers/gl_context/glew.h
|
||||
index 4eed47708f..5f937862bf 100644
|
||||
--- a/drivers/gl_context/glew.h
|
||||
+++ b/drivers/gl_context/glew.h
|
||||
@@ -1168,12 +1168,17 @@ GLAPI void GLAPIENTRY glViewport (GLint x, GLint y, GLsizei width, GLsizei heigh
|
||||
|
||||
/* ---------------------------------- GLU ---------------------------------- */
|
||||
|
||||
+// -- GODOT start --
|
||||
+// We don't use GLU, so remove a dependency.
|
||||
+#if 0
|
||||
/* this is where we can safely include GLU */
|
||||
#if defined(__APPLE__) && defined(__MACH__)
|
||||
#include <OpenGL/glu.h>
|
||||
#else
|
||||
#include <GL/glu.h>
|
||||
#endif
|
||||
+#endif
|
||||
+// -- GODOT end --
|
||||
|
||||
/* ----------------------------- GL_VERSION_1_2 ---------------------------- */
|
||||
|
||||
Loading…
Reference in New Issue