Mesa (master): libgl-xlib: Fix xlib_sw_winsys.h include path.

Vinson Lee vlee at kemper.freedesktop.org
Sat Feb 22 03:56:24 UTC 2014


Module: Mesa
Branch: master
Commit: 079773d1cb690d24dff40752e0a1842ba706d656
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=079773d1cb690d24dff40752e0a1842ba706d656

Author: Vinson Lee <vlee at freedesktop.org>
Date:   Fri Feb 21 19:53:29 2014 -0800

libgl-xlib: Fix xlib_sw_winsys.h include path.

This patch fixes this SCons build error introduced with commit
4f37e52f374b8b1d7177634dc09ab71e30e1779d.

  Compiling src/gallium/targets/libgl-xlib/xlib.c ...
src/gallium/targets/libgl-xlib/xlib.c:35:42: fatal error: state_tracker/xlib_sw_winsys.h: No such file or directory
 #include "state_tracker/xlib_sw_winsys.h"
                                          ^

Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=75347
Signed-off-by: Vinson Lee <vlee at freedesktop.org>

---

 src/gallium/targets/libgl-xlib/xlib.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/gallium/targets/libgl-xlib/xlib.c b/src/gallium/targets/libgl-xlib/xlib.c
index c059a0e..1b62afb 100644
--- a/src/gallium/targets/libgl-xlib/xlib.c
+++ b/src/gallium/targets/libgl-xlib/xlib.c
@@ -32,7 +32,7 @@
  */
 #include "pipe/p_compiler.h"
 #include "util/u_debug.h"
-#include "state_tracker/xlib_sw_winsys.h"
+#include "sw/xlib/xlib_sw_winsys.h"
 #include "xm_public.h"
 
 #include "state_tracker/st_gl_api.h"




More information about the mesa-commit mailing list