summaryrefslogtreecommitdiff
path: root/devel/qt6-base
diff options
context:
space:
mode:
Diffstat (limited to 'devel/qt6-base')
-rw-r--r--devel/qt6-base/Makefile9
-rw-r--r--devel/qt6-base/distinfo6
-rw-r--r--devel/qt6-base/files/extrapatch-inotify11
-rw-r--r--devel/qt6-base/files/patch-cmake_QtPkgConfigHelpers.cmake4
-rw-r--r--devel/qt6-base/files/patch-src_corelib_CMakeLists.txt4
-rw-r--r--devel/qt6-base/files/patch-src_corelib_global_qcomparehelpers.h14
-rw-r--r--devel/qt6-base/files/patch-src_corelib_global_qcompilerdetection.h10
-rw-r--r--devel/qt6-base/files/patch-src_corelib_kernel_qeventdispatcher__glib.cpp17
-rw-r--r--devel/qt6-base/files/patch-src_network_socket_qnativesocketengine__unix.cpp13
-rw-r--r--devel/qt6-base/files/patch-src_platformsupport_devicediscovery_qdevicediscovery__static.cpp15
-rw-r--r--devel/qt6-base/files/patch-src_platformsupport_input_evdevkeyboard_qevdevkeyboard__defaultmap__p.h13
-rw-r--r--devel/qt6-base/files/patch-src_platformsupport_input_evdevkeyboard_qevdevkeyboardhandler.cpp13
-rw-r--r--devel/qt6-base/files/patch-src_platformsupport_input_evdevtablet_qevdevtablethandler.cpp15
-rw-r--r--devel/qt6-base/files/patch-src_platformsupport_input_evdevtouch_qevdevtouchhandler.cpp15
-rw-r--r--devel/qt6-base/files/patch-src_plugins_tls_openssl_qsslcontext__openssl.cpp4
-rw-r--r--devel/qt6-base/files/patch-src_plugins_tls_openssl_qsslsocket__openssl__symbols.cpp22
-rw-r--r--devel/qt6-base/pkg-plist157
17 files changed, 266 insertions, 76 deletions
diff --git a/devel/qt6-base/Makefile b/devel/qt6-base/Makefile
index e3ec93bddc7c..9ccdc12070a0 100644
--- a/devel/qt6-base/Makefile
+++ b/devel/qt6-base/Makefile
@@ -1,6 +1,6 @@
PORTNAME= base
DISTVERSION= ${QT6_VERSION}
-PORTREVISION= 1
+PORTREVISION= 2
CATEGORIES= devel
PKGNAMEPREFIX= qt6-
@@ -96,6 +96,13 @@ BUILD_DEPENDS+= as:devel/binutils
CMAKE_ARGS+= -DCMAKE_ASM_FLAGS=-no-integrated-as
.endif
+.if exists(/usr/include/sys/inotify.h)
+PLIST_SUB+= INOTIFY="" KQUEUE="@comment "
+EXTRA_PATCHES+= ${FILESDIR}/extrapatch-inotify
+.else
+PLIST_SUB+= INOTIFY="@comment " KQUEUE=""
+.endif
+
post-patch:
@${REINPLACE_CMD} -e 's|%%OPENSSLLIB%%|${OPENSSLLIB}|g' \
${WRKSRC}/src/plugins/tls/openssl/qsslsocket_openssl_symbols.cpp
diff --git a/devel/qt6-base/distinfo b/devel/qt6-base/distinfo
index e2f47ad60ff8..07b98015ee3b 100644
--- a/devel/qt6-base/distinfo
+++ b/devel/qt6-base/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1743028326
-SHA256 (KDE/Qt/6.8.3/qtbase-everywhere-src-6.8.3.tar.xz) = 56001b905601bb9023d399f3ba780d7fa940f3e4861e496a7c490331f49e0b80
-SIZE (KDE/Qt/6.8.3/qtbase-everywhere-src-6.8.3.tar.xz) = 48426536
+TIMESTAMP = 1749162730
+SHA256 (KDE/Qt/6.9.1/qtbase-everywhere-src-6.9.1.tar.xz) = 40caedbf83cc9a1959610830563565889878bc95f115868bbf545d1914acf28e
+SIZE (KDE/Qt/6.9.1/qtbase-everywhere-src-6.9.1.tar.xz) = 49755912
diff --git a/devel/qt6-base/files/extrapatch-inotify b/devel/qt6-base/files/extrapatch-inotify
new file mode 100644
index 000000000000..15106c6c721b
--- /dev/null
+++ b/devel/qt6-base/files/extrapatch-inotify
@@ -0,0 +1,11 @@
+--- src/corelib/io/qfilesystemwatcher.cpp.orig 2025-02-13 17:45:28 UTC
++++ src/corelib/io/qfilesystemwatcher.cpp
+@@ -11,7 +11,7 @@
+ #include <qset.h>
+ #include <qtimer.h>
+
+-#if (defined(Q_OS_LINUX) || defined(Q_OS_QNX)) && QT_CONFIG(inotify)
++#if (defined(Q_OS_LINUX) || defined(Q_OS_QNX) || defined(Q_OS_FREEBSD)) && QT_CONFIG(inotify)
+ #define USE_INOTIFY
+ #endif
+
diff --git a/devel/qt6-base/files/patch-cmake_QtPkgConfigHelpers.cmake b/devel/qt6-base/files/patch-cmake_QtPkgConfigHelpers.cmake
index aaf8eb7bcb2d..d28657a45f25 100644
--- a/devel/qt6-base/files/patch-cmake_QtPkgConfigHelpers.cmake
+++ b/devel/qt6-base/files/patch-cmake_QtPkgConfigHelpers.cmake
@@ -1,6 +1,6 @@
---- cmake/QtPkgConfigHelpers.cmake.orig 2023-09-21 19:24:26 UTC
+--- cmake/QtPkgConfigHelpers.cmake.orig 2025-02-19 13:05:34 UTC
+++ cmake/QtPkgConfigHelpers.cmake
-@@ -159,6 +159,6 @@ function(qt_internal_generate_pkg_config_file module)
+@@ -174,6 +174,6 @@ function(qt_internal_generate_pkg_config_file module)
# This is inspired by https://gitlab.kitware.com/cmake/cmake/-/issues/20842
target_sources(${module} PRIVATE "${final_pc_path}")
diff --git a/devel/qt6-base/files/patch-src_corelib_CMakeLists.txt b/devel/qt6-base/files/patch-src_corelib_CMakeLists.txt
index febbf2386c27..32dfb0e5e986 100644
--- a/devel/qt6-base/files/patch-src_corelib_CMakeLists.txt
+++ b/devel/qt6-base/files/patch-src_corelib_CMakeLists.txt
@@ -1,6 +1,6 @@
---- src/corelib/CMakeLists.txt.orig 2024-11-14 11:02:40 UTC
+--- src/corelib/CMakeLists.txt.orig 2025-02-19 13:05:34 UTC
+++ src/corelib/CMakeLists.txt
-@@ -397,6 +397,10 @@ endif()
+@@ -402,6 +402,10 @@ endif()
target_link_libraries(Platform INTERFACE Threads::Threads)
endif()
diff --git a/devel/qt6-base/files/patch-src_corelib_global_qcomparehelpers.h b/devel/qt6-base/files/patch-src_corelib_global_qcomparehelpers.h
index cad98022de4a..5d37ac721415 100644
--- a/devel/qt6-base/files/patch-src_corelib_global_qcomparehelpers.h
+++ b/devel/qt6-base/files/patch-src_corelib_global_qcomparehelpers.h
@@ -7,21 +7,21 @@ qcompare.h that upstream suppresses for GCC.
/usr/local/include/qt6/QtCore/qcomparehelpers.h:211:43: note: expanded from macro 'QT_DECLARE_ORDERING_HELPER_TEMPLATE'
211 | { return compareThreeWay(lhs, rhs) >= 0; }
---- src/corelib/global/qcomparehelpers.h.orig 2024-11-12 10:55:11 UTC
+--- src/corelib/global/qcomparehelpers.h.orig 2025-02-19 13:05:34 UTC
+++ src/corelib/global/qcomparehelpers.h
-@@ -242,6 +242,7 @@ template <typename In> constexpr auto to_Qt(In in) noe
+@@ -316,6 +316,7 @@ orderingFlagsFor(T t) noexcept
#define QT_DECLARE_ORDERING_HELPER_TEMPLATE(OrderingType, LeftType, RightType, Constexpr, \
- Noexcept, Attributes) \
+ Noexcept, ...) \
+ QT_WARNING_DISABLE_CLANG("-Wzero-as-null-pointer-constant") \
- Attributes \
+ __VA_ARGS__ \
friend Constexpr bool operator<(LeftType const &lhs, RightType const &rhs) Noexcept \
{ \
-@@ -279,6 +280,7 @@ template <typename In> constexpr auto to_Qt(In in) noe
+@@ -357,6 +358,7 @@ orderingFlagsFor(T t) noexcept
// Helpers for reversed ordering, using the existing compareThreeWay() function.
#define QT_DECLARE_REVERSED_ORDERING_HELPER_TEMPLATE(OrderingType, LeftType, RightType, Constexpr, \
- Noexcept, Attributes) \
+ Noexcept, ...) \
+ QT_WARNING_DISABLE_CLANG("-Wzero-as-null-pointer-constant") \
- Attributes \
+ __VA_ARGS__ \
friend Constexpr bool operator<(RightType const &lhs, LeftType const &rhs) Noexcept \
{ return is_gt(compareThreeWay(rhs, lhs)); } \
diff --git a/devel/qt6-base/files/patch-src_corelib_global_qcompilerdetection.h b/devel/qt6-base/files/patch-src_corelib_global_qcompilerdetection.h
index fe3f15c482e9..5047f42ef687 100644
--- a/devel/qt6-base/files/patch-src_corelib_global_qcompilerdetection.h
+++ b/devel/qt6-base/files/patch-src_corelib_global_qcompilerdetection.h
@@ -5,14 +5,14 @@ error: use of the 'nodiscard' attribute is a C++20 extension
https://github.com/llvm/llvm-project/issues/32865
---- src/corelib/global/qcompilerdetection.h.orig 2024-11-14 11:02:40 UTC
+--- src/corelib/global/qcompilerdetection.h.orig 2025-05-28 10:22:57 UTC
+++ src/corelib/global/qcompilerdetection.h
-@@ -959,7 +959,7 @@
+@@ -966,7 +966,7 @@
# define Q_REQUIRED_RESULT [[nodiscard]]
#endif
--#if __has_cpp_attribute(nodiscard) >= 201907L /* used for both P1771 and P1301... */
-+#if __has_cpp_attribute(nodiscard) >= 201907L && (!defined(Q_CC_CLANG) || __cplusplus >= 201907L) /* used for both P1771 and P1301... */
+-#if (defined(__cplusplus) && __has_cpp_attribute(nodiscard) >= 201907L /* used for both P1771 and P1301... */) \
++#if (defined(__cplusplus) && __has_cpp_attribute(nodiscard) >= 201907L && (!defined(Q_CC_CLANG) || __cplusplus >= 201907L) /* used for both P1771 and P1301... */) \
+ || (!defined(__cplusplus) && __has_c_attribute(nodiscard) /* N2448 */)
// [[nodiscard]] constructor (P1771)
# ifndef Q_NODISCARD_CTOR
- # define Q_NODISCARD_CTOR [[nodiscard]]
diff --git a/devel/qt6-base/files/patch-src_corelib_kernel_qeventdispatcher__glib.cpp b/devel/qt6-base/files/patch-src_corelib_kernel_qeventdispatcher__glib.cpp
new file mode 100644
index 000000000000..1c20f8d819fc
--- /dev/null
+++ b/devel/qt6-base/files/patch-src_corelib_kernel_qeventdispatcher__glib.cpp
@@ -0,0 +1,17 @@
+https://codereview.qt-project.org/c/qt/qtbase/+/651677
+
+--- src/corelib/kernel/qeventdispatcher_glib.cpp.orig 2025-02-13 17:45:28 UTC
++++ src/corelib/kernel/qeventdispatcher_glib.cpp
+@@ -434,10 +434,10 @@ void QEventDispatcherGlib::registerSocketNotifier(QSoc
+ p->pollfd.events = G_IO_IN | G_IO_HUP | G_IO_ERR;
+ break;
+ case QSocketNotifier::Write:
+- p->pollfd.events = G_IO_OUT | G_IO_ERR;
++ p->pollfd.events = G_IO_OUT | G_IO_HUP | G_IO_ERR;
+ break;
+ case QSocketNotifier::Exception:
+- p->pollfd.events = G_IO_PRI | G_IO_ERR;
++ p->pollfd.events = G_IO_PRI | G_IO_HUP | G_IO_ERR;
+ break;
+ }
+ p->socketNotifier = notifier;
diff --git a/devel/qt6-base/files/patch-src_network_socket_qnativesocketengine__unix.cpp b/devel/qt6-base/files/patch-src_network_socket_qnativesocketengine__unix.cpp
new file mode 100644
index 000000000000..a61cd8a94a13
--- /dev/null
+++ b/devel/qt6-base/files/patch-src_network_socket_qnativesocketengine__unix.cpp
@@ -0,0 +1,13 @@
+https://codereview.qt-project.org/c/qt/qtbase/+/651678
+
+--- src/network/socket/qnativesocketengine_unix.cpp.orig 2025-06-08 12:42:24 UTC
++++ src/network/socket/qnativesocketengine_unix.cpp
+@@ -1379,7 +1379,7 @@ int QNativeSocketEnginePrivate::nativeSelect(QDeadline
+ }
+
+ static const short read_flags = POLLIN | POLLHUP | POLLERR;
+- static const short write_flags = POLLOUT | POLLERR;
++ static const short write_flags = POLLOUT | POLLHUP | POLLERR;
+
+ *selectForRead = ((pfd.revents & read_flags) != 0);
+ *selectForWrite = ((pfd.revents & write_flags) != 0);
diff --git a/devel/qt6-base/files/patch-src_platformsupport_devicediscovery_qdevicediscovery__static.cpp b/devel/qt6-base/files/patch-src_platformsupport_devicediscovery_qdevicediscovery__static.cpp
index 3d9fef9324c9..1ee06b28634b 100644
--- a/devel/qt6-base/files/patch-src_platformsupport_devicediscovery_qdevicediscovery__static.cpp
+++ b/devel/qt6-base/files/patch-src_platformsupport_devicediscovery_qdevicediscovery__static.cpp
@@ -1,13 +1,14 @@
---- src/platformsupport/devicediscovery/qdevicediscovery_static.cpp.orig 2024-09-18 16:48:24 UTC
+--- src/platformsupport/devicediscovery/qdevicediscovery_static.cpp.orig 2025-02-19 13:05:34 UTC
+++ src/platformsupport/devicediscovery/qdevicediscovery_static.cpp
-@@ -11,9 +11,7 @@
+@@ -11,11 +11,7 @@
#include <QLoggingCategory>
#include <QtCore/private/qcore_unix_p.h>
-#ifdef Q_OS_FREEBSD
-#include <dev/evdev/input.h>
--#elif defined(Q_OS_VXWORKS)
-+#if defined(Q_OS_VXWORKS)
- #include <evdevLib.h>
- #define ABS_X EV_DEV_PTR_ABS_X
- #else
+-#else
+ #include <linux/input.h>
+-#endif
+ #include <fcntl.h>
+
+ /* android (and perhaps some other linux-derived stuff) don't define everything
diff --git a/devel/qt6-base/files/patch-src_platformsupport_input_evdevkeyboard_qevdevkeyboard__defaultmap__p.h b/devel/qt6-base/files/patch-src_platformsupport_input_evdevkeyboard_qevdevkeyboard__defaultmap__p.h
index 9758fa6d2577..54be3f5036af 100644
--- a/devel/qt6-base/files/patch-src_platformsupport_input_evdevkeyboard_qevdevkeyboard__defaultmap__p.h
+++ b/devel/qt6-base/files/patch-src_platformsupport_input_evdevkeyboard_qevdevkeyboard__defaultmap__p.h
@@ -1,13 +1,14 @@
---- src/platformsupport/input/evdevkeyboard/qevdevkeyboard_defaultmap_p.h.orig 2024-09-18 16:48:24 UTC
+--- src/platformsupport/input/evdevkeyboard/qevdevkeyboard_defaultmap_p.h.orig 2025-02-19 13:05:34 UTC
+++ src/platformsupport/input/evdevkeyboard/qevdevkeyboard_defaultmap_p.h
-@@ -17,9 +17,7 @@
+@@ -19,11 +19,7 @@
+ #include <QtInputSupport/private/qkeyboardmap_p.h>
- #include "qnamespace.h"
#include "private/qglobal_p.h"
-#ifdef Q_OS_FREEBSD
-#include <dev/evdev/input.h>
--#elif !defined(Q_OS_VXWORKS)
-+#if !defined(Q_OS_VXWORKS)
+-#else
#include "linux/input.h"
- #endif
+-#endif
+
+ // no QT_BEGIN_NAMESPACE, since we include it internally...
diff --git a/devel/qt6-base/files/patch-src_platformsupport_input_evdevkeyboard_qevdevkeyboardhandler.cpp b/devel/qt6-base/files/patch-src_platformsupport_input_evdevkeyboard_qevdevkeyboardhandler.cpp
index f6c12d7e0838..f3d5f982e63c 100644
--- a/devel/qt6-base/files/patch-src_platformsupport_input_evdevkeyboard_qevdevkeyboardhandler.cpp
+++ b/devel/qt6-base/files/patch-src_platformsupport_input_evdevkeyboard_qevdevkeyboardhandler.cpp
@@ -1,13 +1,14 @@
---- src/platformsupport/input/evdevkeyboard/qevdevkeyboardhandler.cpp.orig 2024-09-18 16:48:24 UTC
+--- src/platformsupport/input/evdevkeyboard/qevdevkeyboardhandler.cpp.orig 2025-02-19 13:05:34 UTC
+++ src/platformsupport/input/evdevkeyboard/qevdevkeyboardhandler.cpp
-@@ -17,9 +17,7 @@
+@@ -17,11 +17,7 @@
#include <QtGui/private/qguiapplication_p.h>
#include <QtGui/private/qinputdevicemanager_p.h>
-#ifdef Q_OS_FREEBSD
-#include <dev/evdev/input.h>
--#elif defined(Q_OS_VXWORKS)
-+#if defined(Q_OS_VXWORKS)
- #include <evdevLib.h>
- #else
+-#else
#include <linux/input.h>
+-#endif
+
+ #ifndef input_event_sec
+ #define input_event_sec time.tv_sec
diff --git a/devel/qt6-base/files/patch-src_platformsupport_input_evdevtablet_qevdevtablethandler.cpp b/devel/qt6-base/files/patch-src_platformsupport_input_evdevtablet_qevdevtablethandler.cpp
index eab2816a23c0..2eac7348aecf 100644
--- a/devel/qt6-base/files/patch-src_platformsupport_input_evdevtablet_qevdevtablethandler.cpp
+++ b/devel/qt6-base/files/patch-src_platformsupport_input_evdevtablet_qevdevtablethandler.cpp
@@ -1,13 +1,14 @@
---- src/platformsupport/input/evdevtablet/qevdevtablethandler.cpp.orig 2024-09-18 16:48:24 UTC
+--- src/platformsupport/input/evdevtablet/qevdevtablethandler.cpp.orig 2025-02-19 13:05:34 UTC
+++ src/platformsupport/input/evdevtablet/qevdevtablethandler.cpp
-@@ -10,9 +10,7 @@
+@@ -10,11 +10,7 @@
#include <QLoggingCategory>
#include <QtCore/private/qcore_unix_p.h>
#include <qpa/qwindowsysteminterface.h>
-#ifdef Q_OS_FREEBSD
-#include <dev/evdev/input.h>
--#elif defined(Q_OS_VXWORKS)
-+#if defined(Q_OS_VXWORKS)
- #include <qpa/qplatformscreen.h>
- #include <evdevLib.h>
- #define SYN_REPORT 0
+-#else
+ #include <linux/input.h>
+-#endif
+
+ QT_BEGIN_NAMESPACE
+
diff --git a/devel/qt6-base/files/patch-src_platformsupport_input_evdevtouch_qevdevtouchhandler.cpp b/devel/qt6-base/files/patch-src_platformsupport_input_evdevtouch_qevdevtouchhandler.cpp
index 0d76065f028a..9b553ea8f5c8 100644
--- a/devel/qt6-base/files/patch-src_platformsupport_input_evdevtouch_qevdevtouchhandler.cpp
+++ b/devel/qt6-base/files/patch-src_platformsupport_input_evdevtouch_qevdevtouchhandler.cpp
@@ -1,13 +1,14 @@
---- src/platformsupport/input/evdevtouch/qevdevtouchhandler.cpp.orig 2024-09-18 16:48:24 UTC
+--- src/platformsupport/input/evdevtouch/qevdevtouchhandler.cpp.orig 2025-02-19 13:05:34 UTC
+++ src/platformsupport/input/evdevtouch/qevdevtouchhandler.cpp
-@@ -19,9 +19,7 @@
+@@ -19,11 +19,7 @@
#include <mutex>
-#ifdef Q_OS_FREEBSD
-#include <dev/evdev/input.h>
--#elif defined(Q_OS_VXWORKS)
-+#if defined(Q_OS_VXWORKS)
- #include <qpa/qplatformscreen.h>
- #include <evdevLib.h>
- #define SYN_REPORT 0
+-#else
+ #include <linux/input.h>
+-#endif
+
+ #ifndef input_event_sec
+ #define input_event_sec time.tv_sec
diff --git a/devel/qt6-base/files/patch-src_plugins_tls_openssl_qsslcontext__openssl.cpp b/devel/qt6-base/files/patch-src_plugins_tls_openssl_qsslcontext__openssl.cpp
index 3f65f6206cf6..02dc9a1f8e2a 100644
--- a/devel/qt6-base/files/patch-src_plugins_tls_openssl_qsslcontext__openssl.cpp
+++ b/devel/qt6-base/files/patch-src_plugins_tls_openssl_qsslcontext__openssl.cpp
@@ -1,4 +1,4 @@
---- src/plugins/tls/openssl/qsslcontext_openssl.cpp.orig 2023-09-15 10:20:51 UTC
+--- src/plugins/tls/openssl/qsslcontext_openssl.cpp.orig 2025-02-19 13:05:34 UTC
+++ src/plugins/tls/openssl/qsslcontext_openssl.cpp
@@ -49,9 +49,9 @@ extern "C" int q_verify_cookie_callback(SSL *ssl, cons
}
@@ -49,7 +49,7 @@
QSharedPointer<SSL_CONF_CTX> cctx(q_SSL_CONF_CTX_new(), &q_SSL_CONF_CTX_free);
if (cctx) {
q_SSL_CONF_CTX_set_ssl_ctx(cctx.data(), sslContext->ctx);
-@@ -806,7 +809,9 @@ void QSslContext::applyBackendConfig(QSslContext *sslC
+@@ -803,7 +806,9 @@ void QSslContext::applyBackendConfig(QSslContext *sslC
sslContext->errorStr = msgErrorSettingBackendConfig(QSslSocket::tr("SSL_CONF_finish() failed"));
sslContext->errorCode = QSslError::UnspecifiedError;
}
diff --git a/devel/qt6-base/files/patch-src_plugins_tls_openssl_qsslsocket__openssl__symbols.cpp b/devel/qt6-base/files/patch-src_plugins_tls_openssl_qsslsocket__openssl__symbols.cpp
index b8f5dfd475da..23d57861e45e 100644
--- a/devel/qt6-base/files/patch-src_plugins_tls_openssl_qsslsocket__openssl__symbols.cpp
+++ b/devel/qt6-base/files/patch-src_plugins_tls_openssl_qsslsocket__openssl__symbols.cpp
@@ -1,6 +1,6 @@
---- src/plugins/tls/openssl/qsslsocket_openssl_symbols.cpp.orig 2024-03-19 15:46:43 UTC
+--- src/plugins/tls/openssl/qsslsocket_openssl_symbols.cpp.orig 2025-02-19 13:05:34 UTC
+++ src/plugins/tls/openssl/qsslsocket_openssl_symbols.cpp
-@@ -112,23 +112,36 @@ DEFINEFUNC(int, EVP_PKEY_up_ref, EVP_PKEY *a, a, retur
+@@ -113,23 +113,36 @@ DEFINEFUNC(int, EVP_PKEY_up_ref, EVP_PKEY *a, a, retur
DEFINEFUNC2(int, BN_is_word, BIGNUM *a, a, BN_ULONG w, w, return 0, return)
DEFINEFUNC(int, EVP_CIPHER_CTX_reset, EVP_CIPHER_CTX *c, c, return 0, return)
DEFINEFUNC(int, EVP_PKEY_up_ref, EVP_PKEY *a, a, return 0, return)
@@ -37,7 +37,7 @@
#ifdef TLS1_3_VERSION
DEFINEFUNC2(int, SSL_CTX_set_ciphersuites, SSL_CTX *ctx, ctx, const char *str, str, return 0, return)
DEFINEFUNC2(void, SSL_set_psk_use_session_callback, SSL *ssl, ssl, q_SSL_psk_use_session_cb_func_t callback, callback, return, DUMMYARG)
-@@ -193,7 +206,9 @@ DEFINEFUNC2(OCSP_RESPONSE *, OCSP_response_create, int
+@@ -194,7 +207,9 @@ DEFINEFUNC2(OCSP_RESPONSE *, OCSP_response_create, int
ASN1_OCTET_STRING **piKeyHash, piKeyHash, ASN1_INTEGER **pserial, pserial, OCSP_CERTID *cid, cid,
return 0, return)
DEFINEFUNC2(OCSP_RESPONSE *, OCSP_response_create, int status, status, OCSP_BASICRESP *bs, bs, return nullptr, return)
@@ -47,7 +47,7 @@
DEFINEFUNC2(int, OCSP_id_cmp, OCSP_CERTID *a, a, OCSP_CERTID *b, b, return -1, return)
DEFINEFUNC7(OCSP_SINGLERESP *, OCSP_basic_add1_status, OCSP_BASICRESP *r, r, OCSP_CERTID *c, c, int s, s,
int re, re, ASN1_TIME *rt, rt, ASN1_TIME *t, t, ASN1_TIME *n, n, return nullptr, return)
-@@ -214,7 +229,9 @@ DEFINEFUNC2(int, ASN1_STRING_to_UTF8, unsigned char **
+@@ -215,7 +230,9 @@ DEFINEFUNC2(int, ASN1_STRING_to_UTF8, unsigned char **
DEFINEFUNC2(int, ASN1_INTEGER_cmp, const ASN1_INTEGER *a, a, const ASN1_INTEGER *b, b, return 1, return)
DEFINEFUNC(int, ASN1_STRING_length, ASN1_STRING *a, a, return 0, return)
DEFINEFUNC2(int, ASN1_STRING_to_UTF8, unsigned char **a, a, ASN1_STRING *b, b, return 0, return)
@@ -57,7 +57,7 @@
DEFINEFUNC4(long, BIO_ctrl, BIO *a, a, int b, b, long c, c, void *d, d, return -1, return)
DEFINEFUNC(int, BIO_free, BIO *a, a, return 0, return)
DEFINEFUNC2(BIO *, BIO_new_mem_buf, void *a, a, int b, b, return nullptr, return)
-@@ -289,12 +306,14 @@ DEFINEFUNC(X509_STORE *, SSL_CTX_get_cert_store, const
+@@ -290,12 +307,14 @@ DEFINEFUNC(X509_STORE *, SSL_CTX_get_cert_store, const
DEFINEFUNC2(int, SSL_CTX_use_PrivateKey, SSL_CTX *a, a, EVP_PKEY *b, b, return -1, return)
DEFINEFUNC3(int, SSL_CTX_use_PrivateKey_file, SSL_CTX *a, a, const char *b, b, int c, c, return -1, return)
DEFINEFUNC(X509_STORE *, SSL_CTX_get_cert_store, const SSL_CTX *a, a, return nullptr, return)
@@ -72,7 +72,7 @@
DEFINEFUNC(void, SSL_free, SSL *a, a, return, DUMMYARG)
DEFINEFUNC(STACK_OF(SSL_CIPHER) *, SSL_get_ciphers, const SSL *a, a, return nullptr, return)
DEFINEFUNC(const SSL_CIPHER *, SSL_get_current_cipher, SSL *a, a, return nullptr, return)
-@@ -761,8 +780,8 @@ static LoadedOpenSsl loadOpenSsl()
+@@ -764,8 +783,8 @@ static LoadedOpenSsl loadOpenSsl()
libcrypto->setFileNameAndVersion("crypto"_L1, shlibVersion);
#elif defined(SHLIB_VERSION_NUMBER)
// first attempt: the canonical name is libssl.so.<SHLIB_VERSION_NUMBER>
@@ -83,7 +83,7 @@
#endif // OPENSSL_SHLIB_VERSION
if (libcrypto->load() && libssl->load()) {
-@@ -795,8 +814,8 @@ static LoadedOpenSsl loadOpenSsl()
+@@ -798,8 +817,8 @@ static LoadedOpenSsl loadOpenSsl()
libssl->setFileNameAndVersion("ssl"_L1 + suffix, -1);
libcrypto->setFileNameAndVersion("crypto"_L1 + suffix, -1);
# else
@@ -94,7 +94,7 @@
# endif
if (libcrypto->load() && libssl->load()) {
// libssl.so.0 and libcrypto.so.0 found
-@@ -865,21 +884,34 @@ bool q_resolveOpenSslSymbols()
+@@ -868,21 +887,34 @@ bool q_resolveOpenSslSymbols()
RESOLVEFUNC(EVP_CIPHER_CTX_reset)
RESOLVEFUNC(AUTHORITY_INFO_ACCESS_free)
RESOLVEFUNC(EVP_PKEY_up_ref)
@@ -129,7 +129,7 @@
#ifdef TLS1_3_VERSION
RESOLVEFUNC(SSL_CTX_set_ciphersuites)
RESOLVEFUNC(SSL_set_psk_use_session_callback)
-@@ -961,7 +993,9 @@ bool q_resolveOpenSslSymbols()
+@@ -964,7 +996,9 @@ bool q_resolveOpenSslSymbols()
RESOLVEFUNC(OCSP_check_validity)
RESOLVEFUNC(OCSP_cert_to_id)
RESOLVEFUNC(OCSP_id_get0_info)
@@ -140,7 +140,7 @@
RESOLVEFUNC(OCSP_basic_sign)
RESOLVEFUNC(OCSP_response_create)
RESOLVEFUNC(i2d_OCSP_RESPONSE)
-@@ -1056,12 +1090,14 @@ bool q_resolveOpenSslSymbols()
+@@ -1059,12 +1093,14 @@ bool q_resolveOpenSslSymbols()
RESOLVEFUNC(SSL_CTX_use_PrivateKey)
RESOLVEFUNC(SSL_CTX_use_PrivateKey_file)
RESOLVEFUNC(SSL_CTX_get_cert_store);
@@ -155,7 +155,7 @@
RESOLVEFUNC(SSL_accept)
RESOLVEFUNC(SSL_clear)
RESOLVEFUNC(SSL_connect)
-@@ -1121,7 +1157,9 @@ bool q_resolveOpenSslSymbols()
+@@ -1124,7 +1160,9 @@ bool q_resolveOpenSslSymbols()
RESOLVEFUNC(RSA_free)
RESOLVEFUNC(DH_bits)
diff --git a/devel/qt6-base/pkg-plist b/devel/qt6-base/pkg-plist
index dc65f9357fea..21e21ab67960 100644
--- a/devel/qt6-base/pkg-plist
+++ b/devel/qt6-base/pkg-plist
@@ -40,7 +40,6 @@ bin/qmake6
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qcore_unix_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qcoreapplication_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qcoreevent_p.h
-%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qdatastream_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qdataurl_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qdatetime_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qdatetimeparser_p.h
@@ -63,7 +62,8 @@ bin/qmake6
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qfilesystementry_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qfilesystemiterator_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qfilesystemmetadata_p.h
-%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qfilesystemwatcher_kqueue_p.h
+%%INOTIFY%%%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qfilesystemwatcher_inotify_p.h
+%%KQUEUE%%%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qfilesystemwatcher_kqueue_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qfilesystemwatcher_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qfilesystemwatcher_polling_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qflatmap_p.h
@@ -77,7 +77,6 @@ bin/qmake6
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qfuturewatcher_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qglobal_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qgregoriancalendar_p.h
-%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qhijricalendar_data_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qhijricalendar_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qhooks_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qidentityproxymodel_p.h
@@ -86,7 +85,6 @@ bin/qmake6
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qislamiccivilcalendar_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qitemselectionmodel_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qiterable_p.h
-%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qjalalicalendar_data_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qjalalicalendar_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qjson_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qjsonparser_p.h
@@ -94,7 +92,6 @@ bin/qmake6
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qjuliancalendar_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qlibrary_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qlibraryinfo_p.h
-%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qlocale_data_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qlocale_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qlocale_tools_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qlocaltime_p.h
@@ -137,7 +134,6 @@ bin/qmake6
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qresource_iterator_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qresource_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qringbuffer_p.h
-%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qromancalendar_data_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qromancalendar_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qsavefile_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qsequentialanimationgroup_p.h
@@ -147,7 +143,6 @@ bin/qmake6
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qsimd_x86_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qsingleshottimer_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qsmallbytearray_p.h
-%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qspan_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qstorageinfo_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qstringalgorithms_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qstringconverter_p.h
@@ -155,15 +150,16 @@ bin/qmake6
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qsystemerror_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qsystemsemaphore_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qtcore-config_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qtcoreglobal_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qtemporaryfile_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qtenvironmentvariables_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qtextstream_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qthread_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qthreadpool_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qthreadstorage_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qtimer_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qtimerinfo_unix_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qtimezonelocale_p.h
-%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qtimezoneprivate_data_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qtimezoneprivate_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qtipccommon_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qtools_p.h
@@ -175,6 +171,7 @@ bin/qmake6
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/quniquehandle_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/quniquehandle_types_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qurl_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/quuid_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qvariant_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qvariantanimation_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qvolatile_p.h
@@ -185,6 +182,7 @@ bin/qmake6
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qxmlutils_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qzipreader_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qzipwriter_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/wcharhelpers_win_p.h
%%QT_INCDIR%%/QtCore/QAbstractAnimation
%%QT_INCDIR%%/QtCore/QAbstractEventDispatcher
%%QT_INCDIR%%/QtCore/QAbstractEventDispatcherV2
@@ -570,6 +568,7 @@ bin/qmake6
%%QT_INCDIR%%/QtCore/QtContainerFwd
%%QT_INCDIR%%/QtCore/QtCore
%%QT_INCDIR%%/QtCore/QtCoreDepends
+%%QT_INCDIR%%/QtCore/QtCoreGlobal
%%QT_INCDIR%%/QtCore/QtCoreVersion
%%QT_INCDIR%%/QtCore/QtDarwinHelpers
%%QT_INCDIR%%/QtCore/QtDebug
@@ -599,6 +598,7 @@ bin/qmake6
%%QT_INCDIR%%/QtCore/QtTypes
%%QT_INCDIR%%/QtCore/QtVersion
%%QT_INCDIR%%/QtCore/QtVersionChecks
+%%QT_INCDIR%%/QtCore/q17memory.h
%%QT_INCDIR%%/QtCore/q20algorithm.h
%%QT_INCDIR%%/QtCore/q20chrono.h
%%QT_INCDIR%%/QtCore/q20functional.h
@@ -609,6 +609,7 @@ bin/qmake6
%%QT_INCDIR%%/QtCore/q20utility.h
%%QT_INCDIR%%/QtCore/q20vector.h
%%QT_INCDIR%%/QtCore/q23functional.h
+%%QT_INCDIR%%/QtCore/q23type_traits.h
%%QT_INCDIR%%/QtCore/q23utility.h
%%QT_INCDIR%%/QtCore/q26numeric.h
%%QT_INCDIR%%/QtCore/qabstractanimation.h
@@ -711,6 +712,7 @@ bin/qmake6
%%QT_INCDIR%%/QtCore/qjsonarray.h
%%QT_INCDIR%%/QtCore/qjsondocument.h
%%QT_INCDIR%%/QtCore/qjsonobject.h
+%%QT_INCDIR%%/QtCore/qjsonparseerror.h
%%QT_INCDIR%%/QtCore/qjsonvalue.h
%%QT_INCDIR%%/QtCore/qlatin1stringmatcher.h
%%QT_INCDIR%%/QtCore/qlatin1stringview.h
@@ -815,6 +817,7 @@ bin/qmake6
%%QT_INCDIR%%/QtCore/qtconfigmacros.h
%%QT_INCDIR%%/QtCore/qtcore-config.h
%%QT_INCDIR%%/QtCore/qtcoreexports.h
+%%QT_INCDIR%%/QtCore/qtcoreglobal.h
%%QT_INCDIR%%/QtCore/qtcoreversion.h
%%QT_INCDIR%%/QtCore/qtdeprecationdefinitions.h
%%QT_INCDIR%%/QtCore/qtdeprecationmarkers.h
@@ -824,6 +827,7 @@ bin/qmake6
%%QT_INCDIR%%/QtCore/qtestsupport_core.h
%%QT_INCDIR%%/QtCore/qtextboundaryfinder.h
%%QT_INCDIR%%/QtCore/qtextstream.h
+%%QT_INCDIR%%/QtCore/qtformat_impl.h
%%QT_INCDIR%%/QtCore/qthread.h
%%QT_INCDIR%%/QtCore/qthreadpool.h
%%QT_INCDIR%%/QtCore/qthreadstorage.h
@@ -832,6 +836,7 @@ bin/qmake6
%%QT_INCDIR%%/QtCore/qtimezone.h
%%QT_INCDIR%%/QtCore/qtipccommon.h
%%QT_INCDIR%%/QtCore/qtmetamacros.h
+%%QT_INCDIR%%/QtCore/qtmocconstants.h
%%QT_INCDIR%%/QtCore/qtmochelpers.h
%%QT_INCDIR%%/QtCore/qtnoop.h
%%QT_INCDIR%%/QtCore/qtpreprocessorsupport.h
@@ -991,6 +996,7 @@ bin/qmake6
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qcolortransform_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qcolortrc_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qcolortrclut_p.h
+%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qcolrpaintgraphrenderer_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qcosmeticstroker_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qcssparser_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qcssutil_p.h
@@ -1004,11 +1010,14 @@ bin/qmake6
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qdbusplatformmenu_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qdbustrayicon_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qdbustraytypes_p.h
+%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qdesktopunixservices_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qdistancefield_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qdnd_p.h
+%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qdrawhelper_loongarch64_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qdrawhelper_neon_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qdrawhelper_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qdrawhelper_x86_p.h
+%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qdrawingprimitive_lsx_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qdrawingprimitive_sse2_p.h
%%X11%%%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qedidparser_p.h
%%X11%%%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qedidvendortable_p.h
@@ -1030,12 +1039,12 @@ bin/qmake6
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qfontengine_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qfontengineglyphcache_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qfontenginemultifontconfig_p.h
+%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qfonticonengine_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qfontsubset_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qfragmentmap_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qfreetypefontdatabase_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qgenericunixeventdispatcher_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qgenericunixfontdatabase_p.h
-%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qgenericunixservices_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qgenericunixthemes_p.h
%%X11%%%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qglxconvenience_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qglyphrun_p.h
@@ -1266,6 +1275,7 @@ bin/qmake6
%%QT_INCDIR%%/QtGui/QFontInfo
%%QT_INCDIR%%/QtGui/QFontMetrics
%%QT_INCDIR%%/QtGui/QFontMetricsF
+%%QT_INCDIR%%/QtGui/QFontVariableAxis
%%QT_INCDIR%%/QtGui/QGenericMatrix
%%QT_INCDIR%%/QtGui/QGenericPlugin
%%QT_INCDIR%%/QtGui/QGenericPluginFactory
@@ -1328,6 +1338,7 @@ bin/qmake6
%%QT_INCDIR%%/QtGui/QPainter
%%QT_INCDIR%%/QtGui/QPainterPath
%%QT_INCDIR%%/QtGui/QPainterPathStroker
+%%QT_INCDIR%%/QtGui/QPainterStateGuard
%%QT_INCDIR%%/QtGui/QPalette
%%QT_INCDIR%%/QtGui/QPdfOutputIntent
%%QT_INCDIR%%/QtGui/QPdfWriter
@@ -1461,6 +1472,7 @@ bin/qmake6
%%QT_INCDIR%%/QtGui/qfontdatabase.h
%%QT_INCDIR%%/QtGui/qfontinfo.h
%%QT_INCDIR%%/QtGui/qfontmetrics.h
+%%QT_INCDIR%%/QtGui/qfontvariableaxis.h
%%QT_INCDIR%%/QtGui/qgenericmatrix.h
%%QT_INCDIR%%/QtGui/qgenericplugin.h
%%QT_INCDIR%%/QtGui/qgenericpluginfactory.h
@@ -1496,6 +1508,7 @@ bin/qmake6
%%QT_INCDIR%%/QtGui/qpaintengine.h
%%QT_INCDIR%%/QtGui/qpainter.h
%%QT_INCDIR%%/QtGui/qpainterpath.h
+%%QT_INCDIR%%/QtGui/qpainterstateguard.h
%%QT_INCDIR%%/QtGui/qpalette.h
%%QT_INCDIR%%/QtGui/qpdfoutputintent.h
%%QT_INCDIR%%/QtGui/qpdfwriter.h
@@ -1560,15 +1573,18 @@ bin/qmake6
%%QT_INCDIR%%/QtInputSupport/%%FULLVER%%/QtInputSupport/private/qevdevmousemanager_p.h
%%QT_INCDIR%%/QtInputSupport/%%FULLVER%%/QtInputSupport/private/qevdevtablethandler_p.h
%%QT_INCDIR%%/QtInputSupport/%%FULLVER%%/QtInputSupport/private/qevdevtabletmanager_p.h
-%%QT_INCDIR%%/QtInputSupport/%%FULLVER%%/QtInputSupport/private/qevdevtouchfilter_p.h
%%QT_INCDIR%%/QtInputSupport/%%FULLVER%%/QtInputSupport/private/qevdevtouchhandler_p.h
%%QT_INCDIR%%/QtInputSupport/%%FULLVER%%/QtInputSupport/private/qevdevtouchmanager_p.h
%%QT_INCDIR%%/QtInputSupport/%%FULLVER%%/QtInputSupport/private/qevdevutil_p.h
+%%QT_INCDIR%%/QtInputSupport/%%FULLVER%%/QtInputSupport/private/qfdcontainer_p.h
+%%QT_INCDIR%%/QtInputSupport/%%FULLVER%%/QtInputSupport/private/qkeyboardmap_p.h
+%%QT_INCDIR%%/QtInputSupport/%%FULLVER%%/QtInputSupport/private/qkeycodeaction_p.h
%%QT_INCDIR%%/QtInputSupport/%%FULLVER%%/QtInputSupport/private/qlibinputhandler_p.h
%%QT_INCDIR%%/QtInputSupport/%%FULLVER%%/QtInputSupport/private/qlibinputkeyboard_p.h
%%QT_INCDIR%%/QtInputSupport/%%FULLVER%%/QtInputSupport/private/qlibinputpointer_p.h
%%QT_INCDIR%%/QtInputSupport/%%FULLVER%%/QtInputSupport/private/qlibinputtouch_p.h
%%QT_INCDIR%%/QtInputSupport/%%FULLVER%%/QtInputSupport/private/qoutputmapping_p.h
+%%QT_INCDIR%%/QtInputSupport/%%FULLVER%%/QtInputSupport/private/qtouchfilter_p.h
%%QT_INCDIR%%/QtInputSupport/QtInputSupport
%%QT_INCDIR%%/QtInputSupport/QtInputSupportDepends
%%QT_INCDIR%%/QtInputSupport/QtInputSupportVersion
@@ -2519,6 +2535,8 @@ bin/qmake6
%%QT_INCDIR%%/QtXml/qtxmlexports.h
%%QT_INCDIR%%/QtXml/qtxmlglobal.h
%%QT_INCDIR%%/QtXml/qtxmlversion.h
+@comment lib/cmake/Qt6/3rdparty/extra-cmake-modules/0001-ECMEnableSanitizers.cmake-fix-GCC-s-note-variable-tr.patch
+@comment lib/cmake/Qt6/3rdparty/extra-cmake-modules/0002-ECMEnableSanitizers.cmake-replace-tabs-with-spaces.patch
lib/cmake/Qt6/3rdparty/extra-cmake-modules/COPYING-CMAKE-SCRIPTS
lib/cmake/Qt6/3rdparty/extra-cmake-modules/REUSE.toml
lib/cmake/Qt6/3rdparty/extra-cmake-modules/find-modules/ECMFindModuleHelpersStub.cmake
@@ -2652,6 +2670,7 @@ lib/cmake/Qt6/QtJavaHelpers.cmake
lib/cmake/Qt6/QtLalrHelpers.cmake
lib/cmake/Qt6/QtMkspecHelpers.cmake
lib/cmake/Qt6/QtModuleConfig.cmake.in
+lib/cmake/Qt6/QtModuleConfigPrivate.cmake.in
lib/cmake/Qt6/QtModuleDependencies.cmake.in
lib/cmake/Qt6/QtModuleHeadersCheck.cmake
lib/cmake/Qt6/QtModuleHelpers.cmake
@@ -2674,6 +2693,7 @@ lib/cmake/Qt6/QtPriHelpers.cmake
lib/cmake/Qt6/QtPrlHelpers.cmake
lib/cmake/Qt6/QtProcessConfigureArgs.cmake
lib/cmake/Qt6/QtProperties.cmake
+lib/cmake/Qt6/QtPublicAndroidHelpers.cmake
lib/cmake/Qt6/QtPublicAppleHelpers.cmake
lib/cmake/Qt6/QtPublicCMakeHelpers.cmake
lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake
@@ -2683,6 +2703,7 @@ lib/cmake/Qt6/QtPublicFinalizerHelpers.cmake
lib/cmake/Qt6/QtPublicFindPackageHelpers.cmake
lib/cmake/Qt6/QtPublicGitHelpers.cmake
lib/cmake/Qt6/QtPublicPluginHelpers.cmake
+lib/cmake/Qt6/QtPublicPluginHelpers_v2.cmake
lib/cmake/Qt6/QtPublicSbomAttributionHelpers.cmake
lib/cmake/Qt6/QtPublicSbomCpeHelpers.cmake
lib/cmake/Qt6/QtPublicSbomDepHelpers.cmake
@@ -2700,6 +2721,7 @@ lib/cmake/Qt6/QtPublicTestHelpers.cmake
lib/cmake/Qt6/QtPublicToolHelpers.cmake
lib/cmake/Qt6/QtPublicWalkLibsHelpers.cmake
lib/cmake/Qt6/QtPublicWasmToolchainHelpers.cmake
+lib/cmake/Qt6/QtPublicWindowsHelpers.cmake
lib/cmake/Qt6/QtQmakeHelpers.cmake
lib/cmake/Qt6/QtResourceHelpers.cmake
lib/cmake/Qt6/QtRpathHelpers.cmake
@@ -2741,6 +2763,8 @@ lib/cmake/Qt6/platforms/FindPlatformGraphics.cmake
lib/cmake/Qt6/platforms/FindVxWorksPlatformGraphics.cmake
lib/cmake/Qt6/platforms/Platform/Integrity.cmake
lib/cmake/Qt6/qbatchedtestrunner.in.cpp
+lib/cmake/Qt6/qt-internal-config.redo.bat.in
+lib/cmake/Qt6/qt-internal-config.redo.in
lib/cmake/Qt6/qt.toolchain.cmake
lib/cmake/Qt6BuildInternals/Qt6BuildInternalsConfig.cmake
lib/cmake/Qt6BuildInternals/Qt6BuildInternalsConfigVersion.cmake
@@ -2758,6 +2782,14 @@ lib/cmake/Qt6Concurrent/Qt6ConcurrentTargets-%%CMAKE_BUILD_TYPE%%.cmake
lib/cmake/Qt6Concurrent/Qt6ConcurrentTargets.cmake
lib/cmake/Qt6Concurrent/Qt6ConcurrentVersionlessAliasTargets.cmake
lib/cmake/Qt6Concurrent/Qt6ConcurrentVersionlessTargets.cmake
+lib/cmake/Qt6ConcurrentPrivate/Qt6ConcurrentPrivateAdditionalTargetInfo.cmake
+lib/cmake/Qt6ConcurrentPrivate/Qt6ConcurrentPrivateConfig.cmake
+lib/cmake/Qt6ConcurrentPrivate/Qt6ConcurrentPrivateConfigVersion.cmake
+lib/cmake/Qt6ConcurrentPrivate/Qt6ConcurrentPrivateConfigVersionImpl.cmake
+lib/cmake/Qt6ConcurrentPrivate/Qt6ConcurrentPrivateDependencies.cmake
+lib/cmake/Qt6ConcurrentPrivate/Qt6ConcurrentPrivateTargets.cmake
+lib/cmake/Qt6ConcurrentPrivate/Qt6ConcurrentPrivateVersionlessAliasTargets.cmake
+lib/cmake/Qt6ConcurrentPrivate/Qt6ConcurrentPrivateVersionlessTargets.cmake
lib/cmake/Qt6Core/Qt6CTestMacros.cmake
lib/cmake/Qt6Core/Qt6CoreAdditionalTargetInfo.cmake
lib/cmake/Qt6Core/Qt6CoreConfig.cmake
@@ -2773,6 +2805,14 @@ lib/cmake/Qt6Core/Qt6CoreTargets-%%CMAKE_BUILD_TYPE%%.cmake
lib/cmake/Qt6Core/Qt6CoreTargets.cmake
lib/cmake/Qt6Core/Qt6CoreVersionlessAliasTargets.cmake
lib/cmake/Qt6Core/Qt6CoreVersionlessTargets.cmake
+lib/cmake/Qt6CorePrivate/Qt6CorePrivateAdditionalTargetInfo.cmake
+lib/cmake/Qt6CorePrivate/Qt6CorePrivateConfig.cmake
+lib/cmake/Qt6CorePrivate/Qt6CorePrivateConfigVersion.cmake
+lib/cmake/Qt6CorePrivate/Qt6CorePrivateConfigVersionImpl.cmake
+lib/cmake/Qt6CorePrivate/Qt6CorePrivateDependencies.cmake
+lib/cmake/Qt6CorePrivate/Qt6CorePrivateTargets.cmake
+lib/cmake/Qt6CorePrivate/Qt6CorePrivateVersionlessAliasTargets.cmake
+lib/cmake/Qt6CorePrivate/Qt6CorePrivateVersionlessTargets.cmake
lib/cmake/Qt6CoreTools/Qt6CoreToolsAdditionalTargetInfo.cmake
lib/cmake/Qt6CoreTools/Qt6CoreToolsConfig.cmake
lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersion.cmake
@@ -2791,6 +2831,14 @@ lib/cmake/Qt6DBus/Qt6DBusTargets-%%CMAKE_BUILD_TYPE%%.cmake
lib/cmake/Qt6DBus/Qt6DBusTargets.cmake
lib/cmake/Qt6DBus/Qt6DBusVersionlessAliasTargets.cmake
lib/cmake/Qt6DBus/Qt6DBusVersionlessTargets.cmake
+lib/cmake/Qt6DBusPrivate/Qt6DBusPrivateAdditionalTargetInfo.cmake
+lib/cmake/Qt6DBusPrivate/Qt6DBusPrivateConfig.cmake
+lib/cmake/Qt6DBusPrivate/Qt6DBusPrivateConfigVersion.cmake
+lib/cmake/Qt6DBusPrivate/Qt6DBusPrivateConfigVersionImpl.cmake
+lib/cmake/Qt6DBusPrivate/Qt6DBusPrivateDependencies.cmake
+lib/cmake/Qt6DBusPrivate/Qt6DBusPrivateTargets.cmake
+lib/cmake/Qt6DBusPrivate/Qt6DBusPrivateVersionlessAliasTargets.cmake
+lib/cmake/Qt6DBusPrivate/Qt6DBusPrivateVersionlessTargets.cmake
lib/cmake/Qt6DBusTools/Qt6DBusToolsAdditionalTargetInfo.cmake
lib/cmake/Qt6DBusTools/Qt6DBusToolsConfig.cmake
lib/cmake/Qt6DBusTools/Qt6DBusToolsConfigVersion.cmake
@@ -2964,6 +3012,14 @@ lib/cmake/Qt6Gui/Qt6QXdgDesktopPortalThemePluginConfigVersion.cmake
lib/cmake/Qt6Gui/Qt6QXdgDesktopPortalThemePluginConfigVersionImpl.cmake
lib/cmake/Qt6Gui/Qt6QXdgDesktopPortalThemePluginTargets-%%CMAKE_BUILD_TYPE%%.cmake
lib/cmake/Qt6Gui/Qt6QXdgDesktopPortalThemePluginTargets.cmake
+lib/cmake/Qt6GuiPrivate/Qt6GuiPrivateAdditionalTargetInfo.cmake
+lib/cmake/Qt6GuiPrivate/Qt6GuiPrivateConfig.cmake
+lib/cmake/Qt6GuiPrivate/Qt6GuiPrivateConfigVersion.cmake
+lib/cmake/Qt6GuiPrivate/Qt6GuiPrivateConfigVersionImpl.cmake
+lib/cmake/Qt6GuiPrivate/Qt6GuiPrivateDependencies.cmake
+lib/cmake/Qt6GuiPrivate/Qt6GuiPrivateTargets.cmake
+lib/cmake/Qt6GuiPrivate/Qt6GuiPrivateVersionlessAliasTargets.cmake
+lib/cmake/Qt6GuiPrivate/Qt6GuiPrivateVersionlessTargets.cmake
lib/cmake/Qt6GuiTools/Qt6GuiToolsAdditionalTargetInfo.cmake
lib/cmake/Qt6GuiTools/Qt6GuiToolsConfig.cmake
lib/cmake/Qt6GuiTools/Qt6GuiToolsConfigVersion.cmake
@@ -2973,6 +3029,7 @@ lib/cmake/Qt6GuiTools/Qt6GuiToolsTargets-%%CMAKE_BUILD_TYPE%%.cmake
lib/cmake/Qt6GuiTools/Qt6GuiToolsTargets.cmake
lib/cmake/Qt6GuiTools/Qt6GuiToolsVersionlessTargets.cmake
lib/cmake/Qt6HostInfo/Qt6HostInfoConfig.cmake
+lib/cmake/Qt6HostInfo/Qt6HostInfoConfigVersion.cmake
lib/cmake/Qt6InputSupportPrivate/Qt6InputSupportPrivateAdditionalTargetInfo.cmake
lib/cmake/Qt6InputSupportPrivate/Qt6InputSupportPrivateConfig.cmake
lib/cmake/Qt6InputSupportPrivate/Qt6InputSupportPrivateConfigVersion.cmake
@@ -3019,6 +3076,14 @@ lib/cmake/Qt6Network/Qt6QTlsBackendOpenSSLPluginConfigVersion.cmake
lib/cmake/Qt6Network/Qt6QTlsBackendOpenSSLPluginConfigVersionImpl.cmake
lib/cmake/Qt6Network/Qt6QTlsBackendOpenSSLPluginTargets-%%CMAKE_BUILD_TYPE%%.cmake
lib/cmake/Qt6Network/Qt6QTlsBackendOpenSSLPluginTargets.cmake
+lib/cmake/Qt6NetworkPrivate/Qt6NetworkPrivateAdditionalTargetInfo.cmake
+lib/cmake/Qt6NetworkPrivate/Qt6NetworkPrivateConfig.cmake
+lib/cmake/Qt6NetworkPrivate/Qt6NetworkPrivateConfigVersion.cmake
+lib/cmake/Qt6NetworkPrivate/Qt6NetworkPrivateConfigVersionImpl.cmake
+lib/cmake/Qt6NetworkPrivate/Qt6NetworkPrivateDependencies.cmake
+lib/cmake/Qt6NetworkPrivate/Qt6NetworkPrivateTargets.cmake
+lib/cmake/Qt6NetworkPrivate/Qt6NetworkPrivateVersionlessAliasTargets.cmake
+lib/cmake/Qt6NetworkPrivate/Qt6NetworkPrivateVersionlessTargets.cmake
lib/cmake/Qt6OpenGL/Qt6OpenGLAdditionalTargetInfo.cmake
lib/cmake/Qt6OpenGL/Qt6OpenGLConfig.cmake
lib/cmake/Qt6OpenGL/Qt6OpenGLConfigVersion.cmake
@@ -3028,6 +3093,14 @@ lib/cmake/Qt6OpenGL/Qt6OpenGLTargets-%%CMAKE_BUILD_TYPE%%.cmake
lib/cmake/Qt6OpenGL/Qt6OpenGLTargets.cmake
lib/cmake/Qt6OpenGL/Qt6OpenGLVersionlessAliasTargets.cmake
lib/cmake/Qt6OpenGL/Qt6OpenGLVersionlessTargets.cmake
+lib/cmake/Qt6OpenGLPrivate/Qt6OpenGLPrivateAdditionalTargetInfo.cmake
+lib/cmake/Qt6OpenGLPrivate/Qt6OpenGLPrivateConfig.cmake
+lib/cmake/Qt6OpenGLPrivate/Qt6OpenGLPrivateConfigVersion.cmake
+lib/cmake/Qt6OpenGLPrivate/Qt6OpenGLPrivateConfigVersionImpl.cmake
+lib/cmake/Qt6OpenGLPrivate/Qt6OpenGLPrivateDependencies.cmake
+lib/cmake/Qt6OpenGLPrivate/Qt6OpenGLPrivateTargets.cmake
+lib/cmake/Qt6OpenGLPrivate/Qt6OpenGLPrivateVersionlessAliasTargets.cmake
+lib/cmake/Qt6OpenGLPrivate/Qt6OpenGLPrivateVersionlessTargets.cmake
lib/cmake/Qt6OpenGLWidgets/Qt6OpenGLWidgetsAdditionalTargetInfo.cmake
lib/cmake/Qt6OpenGLWidgets/Qt6OpenGLWidgetsConfig.cmake
lib/cmake/Qt6OpenGLWidgets/Qt6OpenGLWidgetsConfigVersion.cmake
@@ -3037,6 +3110,14 @@ lib/cmake/Qt6OpenGLWidgets/Qt6OpenGLWidgetsTargets-%%CMAKE_BUILD_TYPE%%.cmake
lib/cmake/Qt6OpenGLWidgets/Qt6OpenGLWidgetsTargets.cmake
lib/cmake/Qt6OpenGLWidgets/Qt6OpenGLWidgetsVersionlessAliasTargets.cmake
lib/cmake/Qt6OpenGLWidgets/Qt6OpenGLWidgetsVersionlessTargets.cmake
+lib/cmake/Qt6OpenGLWidgetsPrivate/Qt6OpenGLWidgetsPrivateAdditionalTargetInfo.cmake
+lib/cmake/Qt6OpenGLWidgetsPrivate/Qt6OpenGLWidgetsPrivateConfig.cmake
+lib/cmake/Qt6OpenGLWidgetsPrivate/Qt6OpenGLWidgetsPrivateConfigVersion.cmake
+lib/cmake/Qt6OpenGLWidgetsPrivate/Qt6OpenGLWidgetsPrivateConfigVersionImpl.cmake
+lib/cmake/Qt6OpenGLWidgetsPrivate/Qt6OpenGLWidgetsPrivateDependencies.cmake
+lib/cmake/Qt6OpenGLWidgetsPrivate/Qt6OpenGLWidgetsPrivateTargets.cmake
+lib/cmake/Qt6OpenGLWidgetsPrivate/Qt6OpenGLWidgetsPrivateVersionlessAliasTargets.cmake
+lib/cmake/Qt6OpenGLWidgetsPrivate/Qt6OpenGLWidgetsPrivateVersionlessTargets.cmake
lib/cmake/Qt6PrintSupport/Qt6PrintSupportAdditionalTargetInfo.cmake
lib/cmake/Qt6PrintSupport/Qt6PrintSupportConfig.cmake
lib/cmake/Qt6PrintSupport/Qt6PrintSupportConfigVersion.cmake
@@ -3053,6 +3134,14 @@ lib/cmake/Qt6PrintSupport/Qt6PrintSupportVersionlessTargets.cmake
%%CUPS%%lib/cmake/Qt6PrintSupport/Qt6QCupsPrinterSupportPluginConfigVersionImpl.cmake
%%CUPS%%lib/cmake/Qt6PrintSupport/Qt6QCupsPrinterSupportPluginTargets-%%CMAKE_BUILD_TYPE%%.cmake
%%CUPS%%lib/cmake/Qt6PrintSupport/Qt6QCupsPrinterSupportPluginTargets.cmake
+lib/cmake/Qt6PrintSupportPrivate/Qt6PrintSupportPrivateAdditionalTargetInfo.cmake
+lib/cmake/Qt6PrintSupportPrivate/Qt6PrintSupportPrivateConfig.cmake
+lib/cmake/Qt6PrintSupportPrivate/Qt6PrintSupportPrivateConfigVersion.cmake
+lib/cmake/Qt6PrintSupportPrivate/Qt6PrintSupportPrivateConfigVersionImpl.cmake
+lib/cmake/Qt6PrintSupportPrivate/Qt6PrintSupportPrivateDependencies.cmake
+lib/cmake/Qt6PrintSupportPrivate/Qt6PrintSupportPrivateTargets.cmake
+lib/cmake/Qt6PrintSupportPrivate/Qt6PrintSupportPrivateVersionlessAliasTargets.cmake
+lib/cmake/Qt6PrintSupportPrivate/Qt6PrintSupportPrivateVersionlessTargets.cmake
lib/cmake/Qt6Sql/Qt6SqlAdditionalTargetInfo.cmake
lib/cmake/Qt6Sql/Qt6SqlConfig.cmake
lib/cmake/Qt6Sql/Qt6SqlConfigVersion.cmake
@@ -3063,6 +3152,14 @@ lib/cmake/Qt6Sql/Qt6SqlTargets-%%CMAKE_BUILD_TYPE%%.cmake
lib/cmake/Qt6Sql/Qt6SqlTargets.cmake
lib/cmake/Qt6Sql/Qt6SqlVersionlessAliasTargets.cmake
lib/cmake/Qt6Sql/Qt6SqlVersionlessTargets.cmake
+lib/cmake/Qt6SqlPrivate/Qt6SqlPrivateAdditionalTargetInfo.cmake
+lib/cmake/Qt6SqlPrivate/Qt6SqlPrivateConfig.cmake
+lib/cmake/Qt6SqlPrivate/Qt6SqlPrivateConfigVersion.cmake
+lib/cmake/Qt6SqlPrivate/Qt6SqlPrivateConfigVersionImpl.cmake
+lib/cmake/Qt6SqlPrivate/Qt6SqlPrivateDependencies.cmake
+lib/cmake/Qt6SqlPrivate/Qt6SqlPrivateTargets.cmake
+lib/cmake/Qt6SqlPrivate/Qt6SqlPrivateVersionlessAliasTargets.cmake
+lib/cmake/Qt6SqlPrivate/Qt6SqlPrivateVersionlessTargets.cmake
lib/cmake/Qt6Test/Qt6TestAdditionalTargetInfo.cmake
lib/cmake/Qt6Test/Qt6TestConfig.cmake
lib/cmake/Qt6Test/Qt6TestConfigVersion.cmake
@@ -3072,6 +3169,7 @@ lib/cmake/Qt6Test/Qt6TestTargets-%%CMAKE_BUILD_TYPE%%.cmake
lib/cmake/Qt6Test/Qt6TestTargets.cmake
lib/cmake/Qt6Test/Qt6TestVersionlessAliasTargets.cmake
lib/cmake/Qt6Test/Qt6TestVersionlessTargets.cmake
+lib/cmake/Qt6Test/QtTestProperties.cmake
lib/cmake/Qt6TestInternalsPrivate/3rdparty/cmake/QtRunCMakeTestHelpers.cmake
lib/cmake/Qt6TestInternalsPrivate/3rdparty/cmake/RunCMake.cmake
lib/cmake/Qt6TestInternalsPrivate/Qt6TestInternalsPrivateConfig.cmake
@@ -3080,6 +3178,14 @@ lib/cmake/Qt6TestInternalsPrivate/Qt6TestInternalsPrivateConfigVersionImpl.cmake
lib/cmake/Qt6TestInternalsPrivate/Qt6TestInternalsPrivateTargets.cmake
lib/cmake/Qt6TestInternalsPrivate/Qt6TestInternalsPrivateVersionlessAliasTargets.cmake
lib/cmake/Qt6TestInternalsPrivate/Qt6TestInternalsPrivateVersionlessTargets.cmake
+lib/cmake/Qt6TestPrivate/Qt6TestPrivateAdditionalTargetInfo.cmake
+lib/cmake/Qt6TestPrivate/Qt6TestPrivateConfig.cmake
+lib/cmake/Qt6TestPrivate/Qt6TestPrivateConfigVersion.cmake
+lib/cmake/Qt6TestPrivate/Qt6TestPrivateConfigVersionImpl.cmake
+lib/cmake/Qt6TestPrivate/Qt6TestPrivateDependencies.cmake
+lib/cmake/Qt6TestPrivate/Qt6TestPrivateTargets.cmake
+lib/cmake/Qt6TestPrivate/Qt6TestPrivateVersionlessAliasTargets.cmake
+lib/cmake/Qt6TestPrivate/Qt6TestPrivateVersionlessTargets.cmake
lib/cmake/Qt6Widgets/Qt6WidgetsAdditionalTargetInfo.cmake
lib/cmake/Qt6Widgets/Qt6WidgetsConfig.cmake
lib/cmake/Qt6Widgets/Qt6WidgetsConfigVersion.cmake
@@ -3091,6 +3197,14 @@ lib/cmake/Qt6Widgets/Qt6WidgetsTargets-%%CMAKE_BUILD_TYPE%%.cmake
lib/cmake/Qt6Widgets/Qt6WidgetsTargets.cmake
lib/cmake/Qt6Widgets/Qt6WidgetsVersionlessAliasTargets.cmake
lib/cmake/Qt6Widgets/Qt6WidgetsVersionlessTargets.cmake
+lib/cmake/Qt6WidgetsPrivate/Qt6WidgetsPrivateAdditionalTargetInfo.cmake
+lib/cmake/Qt6WidgetsPrivate/Qt6WidgetsPrivateConfig.cmake
+lib/cmake/Qt6WidgetsPrivate/Qt6WidgetsPrivateConfigVersion.cmake
+lib/cmake/Qt6WidgetsPrivate/Qt6WidgetsPrivateConfigVersionImpl.cmake
+lib/cmake/Qt6WidgetsPrivate/Qt6WidgetsPrivateDependencies.cmake
+lib/cmake/Qt6WidgetsPrivate/Qt6WidgetsPrivateTargets.cmake
+lib/cmake/Qt6WidgetsPrivate/Qt6WidgetsPrivateVersionlessAliasTargets.cmake
+lib/cmake/Qt6WidgetsPrivate/Qt6WidgetsPrivateVersionlessTargets.cmake
lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsAdditionalTargetInfo.cmake
lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsConfig.cmake
lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsConfigVersion.cmake
@@ -3117,6 +3231,14 @@ lib/cmake/Qt6Xml/Qt6XmlTargets-%%CMAKE_BUILD_TYPE%%.cmake
lib/cmake/Qt6Xml/Qt6XmlTargets.cmake
lib/cmake/Qt6Xml/Qt6XmlVersionlessAliasTargets.cmake
lib/cmake/Qt6Xml/Qt6XmlVersionlessTargets.cmake
+lib/cmake/Qt6XmlPrivate/Qt6XmlPrivateAdditionalTargetInfo.cmake
+lib/cmake/Qt6XmlPrivate/Qt6XmlPrivateConfig.cmake
+lib/cmake/Qt6XmlPrivate/Qt6XmlPrivateConfigVersion.cmake
+lib/cmake/Qt6XmlPrivate/Qt6XmlPrivateConfigVersionImpl.cmake
+lib/cmake/Qt6XmlPrivate/Qt6XmlPrivateDependencies.cmake
+lib/cmake/Qt6XmlPrivate/Qt6XmlPrivateTargets.cmake
+lib/cmake/Qt6XmlPrivate/Qt6XmlPrivateVersionlessAliasTargets.cmake
+lib/cmake/Qt6XmlPrivate/Qt6XmlPrivateVersionlessTargets.cmake
%%QT_BINDIR%%/androiddeployqt
%%QT_BINDIR%%/androiddeployqt6
%%QT_BINDIR%%/androidtestrunner
@@ -3874,6 +3996,21 @@ libdata/pkgconfig/Qt6Xml.pc
%%QT_DOCDIR%%/global/template/style/online.css
%%QT_DOCDIR%%/global/template/style/tech_preview.svg
%%QT_DOCDIR%%/global/template/style/theqtcompany.png
+%%QT_DOCDIR%%/global/tools-doc-front-page/README.md
+%%QT_DOCDIR%%/global/tools-doc-front-page/images/api-reference.png
+%%QT_DOCDIR%%/global/tools-doc-front-page/images/app-development.png
+%%QT_DOCDIR%%/global/tools-doc-front-page/images/build-32x32.png
+%%QT_DOCDIR%%/global/tools-doc-front-page/images/demo-32x32.png
+%%QT_DOCDIR%%/global/tools-doc-front-page/images/folder-32x32.png
+%%QT_DOCDIR%%/global/tools-doc-front-page/images/getting-started.png
+%%QT_DOCDIR%%/global/tools-doc-front-page/images/ide.png
+%%QT_DOCDIR%%/global/tools-doc-front-page/images/installation.png
+%%QT_DOCDIR%%/global/tools-doc-front-page/images/paste_general-32x32.png
+%%QT_DOCDIR%%/global/tools-doc-front-page/images/platform-and-toolchain.png
+%%QT_DOCDIR%%/global/tools-doc-front-page/images/settings-32x32.png
+%%QT_DOCDIR%%/global/tools-doc-front-page/images/tutorials.png
+%%QT_DOCDIR%%/global/tools-doc-front-page/images/web-32x32.png
+%%QT_DOCDIR%%/global/tools-doc-front-page/tool-name.qdoc
%%QT_DOCDIR%%/global/warninglimit.qdocconf
%%QT_DATADIR%%/modules/Concurrent.json
%%QT_DATADIR%%/modules/Core.json