diff options
author | Daniel van Vugt <daniel.van.vugt@canonical.com> | 2020-06-09 18:25:59 +0800 |
---|---|---|
committer | Daniel van Vugt <daniel.van.vugt@canonical.com> | 2020-06-09 18:32:01 +0800 |
commit | dfe33897db0989635e4a789290dd2a73da39ca5c (patch) | |
tree | 2fbac92027c4a1eaa064b42b2bfc636cbf68a542 /meson_options.txt | |
parent | 90c20b185be16d111636ce6176d83d36e76cfd53 (diff) | |
download | mutter-dfe33897db0989635e4a789290dd2a73da39ca5c.tar.gz |
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
Diffstat (limited to 'meson_options.txt')
-rw-r--r-- | meson_options.txt | 2 |
1 files changed, 1 insertions, 1 deletions
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' ) |