changeset 3967:d22892eaa1cf SDL-1.2

Make sure to check for glu.h before enabling glX support. We don't 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.
author Ryan C. Gordon <icculus@icculus.org>
date Fri, 15 Jun 2007 12:26:29 +0000
parents c0de2aac0a8c
children ae0be7edf7d0
files configure.in
diffstat 1 files changed, 1 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/configure.in	Fri Jun 15 11:43:14 2007 +0000
+++ b/configure.in	Fri Jun 15 12:26:29 2007 +0000
@@ -1550,6 +1550,7 @@
         AC_TRY_COMPILE([
          #include <GL/gl.h>
          #include <GL/glx.h>
+         #include <GL/glu.h>
         ],[
         ],[
         video_opengl=yes