diff options
author | David Seifert <soap@gentoo.org> | 2023-03-28 22:50:10 +0200 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2023-03-28 22:50:10 +0200 |
commit | ee9baaf59e59ffb59602fe8922d8129113cf35b0 (patch) | |
tree | 826639f87e4b0b5b5403052d08b163227baaf835 /x11-wm | |
parent | dev-ruby/typeprof: Stabilize 0.21.3 arm64, #903391 (diff) | |
download | gentoo-ee9baaf59e59ffb59602fe8922d8129113cf35b0.tar.gz gentoo-ee9baaf59e59ffb59602fe8922d8129113cf35b0.tar.bz2 gentoo-ee9baaf59e59ffb59602fe8922d8129113cf35b0.zip |
x11-wm/mutter: sync live ebuild
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'x11-wm')
-rw-r--r-- | x11-wm/mutter/mutter-9999.ebuild | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/x11-wm/mutter/mutter-9999.ebuild b/x11-wm/mutter/mutter-9999.ebuild index 09f3116068ef..4448bd1400ba 100644 --- a/x11-wm/mutter/mutter-9999.ebuild +++ b/x11-wm/mutter/mutter-9999.ebuild @@ -150,9 +150,21 @@ src_prepare() { src_configure() { local emesonargs=( + # Mutter X11 renderer only supports gles2 and GLX, thus do NOT pass + # + # -Dopengl_libname=libOpenGL.so.0 + # + # while we build the x11 renderer, as we currently enable gles2 only + # with USE=wayland and x11 renderer wouldn't find the needed GLX symbols + # in a configuration where wayland is disabled, as libOpenGL doesn't + # include them. + # + # See + # - https://bugs.gentoo.org/835786 + # - https://forums.gentoo.org/viewtopic-p-8695669.html + --buildtype $(usex debug debug plain) -Dopengl=true - -Dopengl_libname=libOpenGL $(meson_use wayland gles2) #gles2_libname -Degl=true |