Skip to content

Commit

Permalink
Make sure to check for glu.h before enabling glX support. We don't
Browse files Browse the repository at this point in the history
 directly need GLU, but SDL_opengl.h tries to include it, and it shows that
 the workstation is misconfigured or incompletely configured if just this
 one header is missing.

   Fixes Bugzilla #336.
  • Loading branch information
icculus committed Jun 15, 2007
1 parent d30739d commit e5afca7
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions configure.in
Expand Up @@ -1550,6 +1550,7 @@ CheckOpenGLX11()
AC_TRY_COMPILE([
#include <GL/gl.h>
#include <GL/glx.h>
#include <GL/glu.h>
],[
],[
video_opengl=yes
Expand Down

0 comments on commit e5afca7

Please sign in to comment.