From acc562d488a5ccaa896bcb8948ceaf28b0c66d36 Mon Sep 17 00:00:00 2001 From: Changqing Li Date: Wed, 11 Mar 2026 13:05:50 +0800 Subject: [PATCH] gimp: add x11 to REQUIRED_DISTRO_FEATURES When DISTRO_FEATURES only contains wayland, but not x11, world build will report: ERROR: Nothing PROVIDES 'libxmu' (but /build/layers/meta-openembedded/meta-gnome/recipes-gimp/gimp/gimp_3.0.8.bb DEPENDS on or otherwise requires it) libxmu was skipped: using DISTRO 'poky', which is missing required DISTRO_FEATURES: 'x11' Signed-off-by: Changqing Li Signed-off-by: Khem Raj --- meta-gnome/recipes-gimp/gimp/gimp_3.0.8.bb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meta-gnome/recipes-gimp/gimp/gimp_3.0.8.bb b/meta-gnome/recipes-gimp/gimp/gimp_3.0.8.bb index 5cbb94055a..1c7f634b65 100644 --- a/meta-gnome/recipes-gimp/gimp/gimp_3.0.8.bb +++ b/meta-gnome/recipes-gimp/gimp/gimp_3.0.8.bb @@ -48,6 +48,8 @@ LDFLAGS:append:libc-musl = " -lexecinfo" inherit meson gtk-icon-cache mime-xdg pkgconfig gettext gobject-introspection vala bash-completion +REQUIRED_DISTRO_FEATURES = "x11" + GIR_MESON_OPTION = 'can-crosscompile-gir' VALA_MESON_OPTION = "vala" VALA_MESON_ENABLE_FLAG = "enabled"