From 0a8922a544bf5712200c098bdc795c0c8ef12279 Mon Sep 17 00:00:00 2001 From: vasilito Date: Tue, 4 Aug 2026 20:08:40 +0300 Subject: [PATCH] qtdeclarative: enable qml_network QQmlEngine::networkAccessManager() exists only under QT_CONFIG(qml_network), a qtdeclarative feature separate from QT_FEATURE_network, which was already ON. kirigami failed on it: src/primitives/icon.cpp:469: 'class QQmlEngine' has no member named 'networkAccessManager' qtbase builds libQt6Network here, so enabling the feature restores kirigami's remote icon loading instead of compiling the capability out. --- local/recipes/qt/qtdeclarative/recipe.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/local/recipes/qt/qtdeclarative/recipe.toml b/local/recipes/qt/qtdeclarative/recipe.toml index 80c926f3f2..348f959538 100644 --- a/local/recipes/qt/qtdeclarative/recipe.toml +++ b/local/recipes/qt/qtdeclarative/recipe.toml @@ -254,6 +254,7 @@ cmake "${COOKBOOK_SOURCE}" \ -DQT_FEATURE_qml_jit=OFF \ -DQT_FEATURE_ssl=ON \ -DQT_FEATURE_network=ON \ + -DQT_FEATURE_qml_network=ON \ -DQT_FEATURE_localserver=ON \ -DQT_FEATURE_http=ON \ -DQT_FEATURE_udpsocket=ON \