From 5f1e4bd43def69ee699b087a7ee66b10c0f36dcc Mon Sep 17 00:00:00 2001 From: vasilito Date: Sat, 25 Jul 2026 01:29:22 +0900 Subject: [PATCH] kf6-kwindowsystem: add libxkbcommon dep (wayland platform pkg_check_modules) With KWINDOWSYSTEM_WAYLAND=ON, src/platforms/wayland/CMakeLists.txt does pkg_check_modules(XKBCommon REQUIRED IMPORTED_TARGET xkbcommon). libxkbcommon provides xkbcommon.pc but was not a dependency, so it was absent from the sysroot and configure failed "Package xkbcommon not found". --- local/recipes/kde/kf6-kwindowsystem/recipe.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/local/recipes/kde/kf6-kwindowsystem/recipe.toml b/local/recipes/kde/kf6-kwindowsystem/recipe.toml index 844a0ce662..3ac2fd34e7 100644 --- a/local/recipes/kde/kf6-kwindowsystem/recipe.toml +++ b/local/recipes/kde/kf6-kwindowsystem/recipe.toml @@ -22,6 +22,8 @@ dependencies = [ "qtwayland", "wayland-protocols", "plasma-wayland-protocols", + # src/platforms/wayland/CMakeLists.txt: pkg_check_modules(xkbcommon REQUIRED) + "libxkbcommon", "kf6-extra-cmake-modules", ] script = """