Mesa (master): egl-static: Fix build error.

Vinson Lee vlee at kemper.freedesktop.org
Mon Jan 13 23:55:05 UTC 2014


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

Author: Vinson Lee <vlee at freedesktop.org>
Date:   Mon Jan 13 15:51:50 2014 -0800

egl-static: Fix build error.

Fix build regression introduced with commit
786af2f963925df2c2a6fb60b29a83e8340f03c7.

egl_pipe.c:46:38: fatal error: radeonsi/radeonsi_public.h: No such file or directory
 #include "radeonsi/radeonsi_public.h"
                                      ^

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

---

 src/gallium/targets/egl-static/egl_pipe.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/gallium/targets/egl-static/egl_pipe.c b/src/gallium/targets/egl-static/egl_pipe.c
index e5100c1..eb1cff9 100644
--- a/src/gallium/targets/egl-static/egl_pipe.c
+++ b/src/gallium/targets/egl-static/egl_pipe.c
@@ -43,7 +43,7 @@
 /* for r600 */
 #include "r600/r600_public.h"
 /* for radeonsi */
-#include "radeonsi/radeonsi_public.h"
+#include "radeonsi/si_public.h"
 /* for vmwgfx */
 #include "svga/drm/svga_drm_public.h"
 #include "svga/svga_public.h"




More information about the mesa-commit mailing list