From: Marc-André Lureau Date: Wed, 30 Aug 2023 09:38:33 +0000 (+0400) Subject: ui/gl: opengl doesn't require PIXMAN X-Git-Tag: v8.2.0-rc0~20^2~10 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=41e0bc3d5cde54571945e9515a469b65d0f39be9;p=thirdparty%2Fqemu.git ui/gl: opengl doesn't require PIXMAN The QEMU fallback covers the requirements. We still need the flags of header inclusion with CONFIG_PIXMAN. Signed-off-by: Marc-André Lureau --- diff --git a/ui/meson.build b/ui/meson.build index 3085e10a72a..7c996139507 100644 --- a/ui/meson.build +++ b/ui/meson.build @@ -60,8 +60,8 @@ endif system_ss.add(opengl) if opengl.found() opengl_ss = ss.source_set() - opengl_ss.add(gbm) - opengl_ss.add(when: [opengl, pixman], + opengl_ss.add(gbm, pixman) + opengl_ss.add(when: [opengl], if_true: files('shader.c', 'console-gl.c', 'egl-helpers.c', 'egl-context.c')) ui_modules += {'opengl' : opengl_ss} endif