From: Brian Paul Date: Thu, 1 Nov 2012 23:38:40 +0000 (-0600) Subject: libgl-xlib: include glheader.h instead of GL/gl.h to fix build X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=8d3fb1be6bd61e59fa241d6422419119956b7d90;p=mesa.git libgl-xlib: include glheader.h instead of GL/gl.h to fix build GL/gl.h doesn't define GLfixed but glapitable.h uses it. --- diff --git a/src/gallium/targets/libgl-xlib/xlib.c b/src/gallium/targets/libgl-xlib/xlib.c index 0ede7e6096b..f974b618944 100644 --- a/src/gallium/targets/libgl-xlib/xlib.c +++ b/src/gallium/targets/libgl-xlib/xlib.c @@ -114,7 +114,7 @@ extern void (*linker_foo(const unsigned char *procName))() #ifdef GLX_INDIRECT_RENDERING #define GL_GLEXT_PROTOTYPES -#include "GL/gl.h" +#include "main/glheader.h" #include "glapi/glapi.h" #include "glapi/glapitable.h"