- 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). OBS-URL: https://build.opensuse.org/request/show/828234 OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/mutter?expand=0&rev=359
34 lines
997 B
Diff
34 lines
997 B
Diff
From dfe33897db0989635e4a789290dd2a73da39ca5c Mon Sep 17 00:00:00 2001
|
|
From: Daniel van Vugt <daniel.van.vugt@canonical.com>
|
|
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
|
|
|