From 6c0edabf17cadce307f4c8c1c5aa63aa3c4448f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrgen=20Buchm=C3=BCller?= Date: Mon, 16 Dec 2019 15:51:02 +0100 Subject: [PATCH] mutter: fix build The shipped cogl needs to include EGL/eglmesaext.h in addition to EGL/egl.h and EGL/eglext.h to define EGL_WAYLAND_BUFFER_WL. --- srcpkgs/mutter/patches/fix-cogl-egl-includes.patch | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 srcpkgs/mutter/patches/fix-cogl-egl-includes.patch diff --git a/srcpkgs/mutter/patches/fix-cogl-egl-includes.patch b/srcpkgs/mutter/patches/fix-cogl-egl-includes.patch new file mode 100644 index 0000000000..d90988887c --- /dev/null +++ b/srcpkgs/mutter/patches/fix-cogl-egl-includes.patch @@ -0,0 +1,11 @@ +--- cogl/cogl/meson.build 2019-10-08 19:15:10.000000000 +0200 ++++ cogl/cogl/meson.build 2019-12-16 15:45:44.037640548 +0100 +@@ -48,7 +48,7 @@ + built_headers += [cogl_gl_header_h] + + if have_egl +- cogl_egl_includes_string = '#include \n#include ' ++ cogl_egl_includes_string = '#include \n#include \n#include ' + else + cogl_egl_includes_string = '' + endif