Hello community, here is the log from the commit of package mutter for openSUSE:Factory checked in at 2020-08-23 09:20:54 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/mutter (Old) and /work/SRC/openSUSE:Factory/.mutter.new.3399 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "mutter" Sun Aug 23 09:20:54 2020 rev:155 rq:828237 version:3.36.5 Changes: -------- --- /work/SRC/openSUSE:Factory/mutter/mutter.changes 2020-08-15 21:17:22.399520359 +0200 +++ /work/SRC/openSUSE:Factory/.mutter.new.3399/mutter.changes 2020-08-23 09:21:00.578679477 +0200 @@ -1,0 +2,7 @@ +Thu Aug 20 15:34:43 UTC 2020 - Frederic Crozat <[email protected]> + +- Add mutter-meson_options-Use-libGLESv2.so.2-for-COGL_DRIVER-gle.patch: + don't use libGLESv2.so but libGLESv2.so.2 for COGL driver + (boo#1175559 glgo#GNOME/mutter!1282). + +------------------------------------------------------------------- New: ---- mutter-meson_options-Use-libGLESv2.so.2-for-COGL_DRIVER-gle.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ mutter.spec ++++++ --- /var/tmp/diff_new_pack.KmXkQd/_old 2020-08-23 09:21:01.434679951 +0200 +++ /var/tmp/diff_new_pack.KmXkQd/_new 2020-08-23 09:21:01.438679953 +0200 @@ -35,6 +35,8 @@ Patch3: mutter-Lower-HIDPI_LIMIT-to-144.patch # PATCH-FIX-UPSTREAM mutter-disable-cvt-s390x.patch bsc#1158128 [email protected] -- Do not search for cvt on s390x, it doesn't exist there Patch4: mutter-disable-cvt-s390x.patch +# PATCH-FIX-UPSTREAM mutter-meson_options-Use-libGLESv2.so.2-for-COGL_DRIVER-gle.patch boo#1175559 glgo#GNOME/mutter!1282 [email protected] -- Fix loading libGLESv2.so.2 +Patch5: mutter-meson_options-Use-libGLESv2.so.2-for-COGL_DRIVER-gle.patch ## SLE-only patches start at 1000 # PATCH-FEATURE-SLE mutter-SLE-bell.patch FATE#316042 bnc#889218 [email protected] -- make audible bell work out of the box. @@ -156,6 +158,7 @@ %setup -q %patch3 -p1 %patch4 -p1 +%patch5 -p1 # SLE-only patches and translations. translation-update-upstream po mutter ++++++ mutter-meson_options-Use-libGLESv2.so.2-for-COGL_DRIVER-gle.patch ++++++ >From dfe33897db0989635e4a789290dd2a73da39ca5c Mon Sep 17 00:00:00 2001 From: Daniel van Vugt <[email protected]> Date: Tue, 9 Jun 2020 18:25:59 +0800 Subject: [PATCH] meson_options: Use libGLESv2.so.2 for COGL_DRIVER=gles2, not libGLESv2.so The former is present on any system that supports OpenGL|ES 2. The latter is just provided in developer packages. Since we access the library via `g_module_open` it's safe to just rely on `libGLESv2.so.2`. Closes: https://gitlab.gnome.org/GNOME/mutter/-/issues/1282 https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/1298 --- meson_options.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson_options.txt b/meson_options.txt index 75a1961e4..655ef433f 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -12,7 +12,7 @@ option('opengl_libname', option('gles2_libname', type: 'string', - value: 'libGLESv2.so', + value: 'libGLESv2.so.2', description: 'GLESv2 library file name' ) -- 2.26.2
