diff options
author | Mark H Weaver <mhw@netris.org> | 2016-10-24 22:28:32 -0400 |
---|---|---|
committer | Mark H Weaver <mhw@netris.org> | 2016-10-24 22:28:32 -0400 |
commit | f1267c872fcaed6c53d43b3ff51abb726f7418d6 (patch) | |
tree | c62f5e4b02fddeb7bdc90f934350150fa014c5fd /gnu/packages/patches | |
parent | 19a65e7c8ce7d825a282c9f664ca3427f2fae0f1 (diff) | |
download | guix-f1267c872fcaed6c53d43b3ff51abb726f7418d6.tar guix-f1267c872fcaed6c53d43b3ff51abb726f7418d6.tar.gz |
gnu: mesa: Fix 'wayland-egl-symbols-check' on MIPS.
* gnu/packages/patches/mesa-wayland-egl-symbols-check-mips.patch: New
file.
* gnu/local.mk (dist_patch_DATA): Add it.
* gnu/packages/gl.scm (mesa)[source]: Add patch when building on MIPS.
Diffstat (limited to 'gnu/packages/patches')
-rw-r--r-- | gnu/packages/patches/mesa-wayland-egl-symbols-check-mips.patch | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/gnu/packages/patches/mesa-wayland-egl-symbols-check-mips.patch b/gnu/packages/patches/mesa-wayland-egl-symbols-check-mips.patch new file mode 100644 index 0000000000..aa2278697e --- /dev/null +++ b/gnu/packages/patches/mesa-wayland-egl-symbols-check-mips.patch @@ -0,0 +1,15 @@ +Fix 'wayland-egl-symbols-check' on mips64el-linux, where an additional symbol +(_ftext) is present in libwayland-egl.so. + +Patch by Mark H Weaver <mhw@netris.org> + +--- mesa-12.0.1/src/egl/wayland/wayland-egl/wayland-egl-symbols-check.orig 2016-01-18 02:39:25.000000000 -0500 ++++ mesa-12.0.1/src/egl/wayland/wayland-egl/wayland-egl-symbols-check 2016-10-24 16:25:07.110721426 -0400 +@@ -7,6 +7,7 @@ + wl_egl_window_destroy + wl_egl_window_get_attached_size + _fini ++_ftext + _init + EOF + done) |