12345678910111213141516171819202122232425262728 |
- From 8377691a0998fd84e6fc8349a5db450bf2d79164 Mon Sep 17 00:00:00 2001
- From: Tasuku Suzuki <tasuku.suzuki@signal-slot.co.jp>
- Date: Tue, 21 Nov 2023 23:58:43 +0900
- Subject: Fix build with -no-feature-network
- Change-Id: Ib21012301da6afb5458f707b39a9a8079d93eb93
- Reviewed-by: Ulf Hermann <ulf.hermann@qt.io>
- Upstream: https://code.qt.io/cgit/qt/qtdeclarative.git/commit/?id=8377691a0998fd84e6fc8349a5db450bf2d79164
- Signed-off-by: Roy Kollen Svendsen <roy.kollen.svendsen@akersolutions.com>
- ---
- src/qml/configure.cmake | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
- diff --git a/src/qml/configure.cmake b/src/qml/configure.cmake
- index 2d0434643a..d1ff90bd54 100644
- --- a/src/qml/configure.cmake
- +++ b/src/qml/configure.cmake
- @@ -82,7 +82,7 @@ qt_feature("qml-ssl" PUBLIC
- SECTION "QML"
- LABEL "QML SSL support"
- PURPOSE "Provides ssl support in QML."
- - CONDITION QT_FEATURE_ssl
- + CONDITION QT_FEATURE_qml_network AND QT_FEATURE_ssl
- )
-
- # On arm and arm64 we need a specialization of cacheFlush() for each OS to be
- --
- cgit v1.2.3
|