Skip to content

Commit

Permalink
GL: GLU is no longer needed as a dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
skyjake committed Oct 26, 2013
1 parent 16c9850 commit f86e499
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
4 changes: 0 additions & 4 deletions doomsday/client/include/gl/sys_opengl.h
Expand Up @@ -32,7 +32,6 @@
# define WIN32_LEAN_AND_MEAN
# include <windows.h>
# include <GL/gl.h>
# include <GL/glu.h>
# ifdef __CLIENT__
# include <GL/glext.h>
# include <GL/wglext.h>
Expand All @@ -48,20 +47,17 @@
# if defined(MACOSX_NATIVESDK) || defined(MACOS_10_7)
# define GL_EXT_compiled_vertex_array 1
# include <OpenGL/gl.h>
# include <OpenGL/glu.h>
# include <OpenGL/glext.h>
# include <OpenGL/OpenGL.h>
# elif defined(MACOSX)
# include <GL/gl.h>
# include <GL/glu.h>
# include <OpenGL/OpenGL.h>
# else
# ifdef __CLIENT__
# include <SDL.h>
# endif
# include <GL/gl.h>
# include <GL/glext.h>
# include <GL/glu.h>
# endif
# define GL_CALL
#endif
Expand Down
2 changes: 1 addition & 1 deletion doomsday/dep_opengl.pri
Expand Up @@ -18,5 +18,5 @@ else:macx {
}
else {
# Generic Unix.
LIBS += -lGL -lGLU
LIBS += -lGL
}

0 comments on commit f86e499

Please sign in to comment.