From 9d20ccd59f477888ea973a0d2b1d97ae0431399d Mon Sep 17 00:00:00 2001 From: vasilito Date: Sat, 1 Aug 2026 08:21:03 +0300 Subject: [PATCH] qt/qtbase: enable printsupport (was -DFEATURE_printsupport=OFF) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Qt6PrintSupport ships inside qtbase (src/printsupport) — it was disabled, not missing. konsole and 8 KDE packages (kxmlgui, kwin, plasma-desktop, ...) need Qt6::PrintSupport; enable it rather than working around its absence. --- local/recipes/qt/qtbase/recipe.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/local/recipes/qt/qtbase/recipe.toml b/local/recipes/qt/qtbase/recipe.toml index 90b75ed31b..6f31bf0627 100644 --- a/local/recipes/qt/qtbase/recipe.toml +++ b/local/recipes/qt/qtbase/recipe.toml @@ -688,7 +688,7 @@ cmake "${COOKBOOK_SOURCE}" \ -DFEATURE_process=ON \ -DFEATURE_testlib=OFF \ -DFEATURE_sql=OFF \ - -DFEATURE_printsupport=OFF \ + -DFEATURE_printsupport=ON \ -DFEATURE_system_zlib=ON \ -DFEATURE_system_pcre2=OFF \ -DFEATURE_system_doubleconversion=OFF \