summaryrefslogtreecommitdiff
path: root/devel/qt6-base
diff options
context:
space:
mode:
Diffstat (limited to 'devel/qt6-base')
-rw-r--r--devel/qt6-base/Makefile11
-rw-r--r--devel/qt6-base/distinfo6
-rw-r--r--devel/qt6-base/files/patch-sock_seqpacket105
-rw-r--r--devel/qt6-base/files/patch-src_corelib_CMakeLists.txt4
-rw-r--r--devel/qt6-base/files/patch-src_corelib_global_qcompilerdetection.h4
-rw-r--r--devel/qt6-base/files/patch-src_corelib_io_qlockfile__unix.cpp6
-rw-r--r--devel/qt6-base/files/patch-src_corelib_time_qtimezoneprivate__tz.cpp4
-rw-r--r--devel/qt6-base/files/patch-src_network_socket_qnativesocketengine__unix.cpp4
-rw-r--r--devel/qt6-base/files/patch-src_plugins_platforms_wayland_plugins_shellintegration_xdg-shell_qwaylandxdgshell__p.h13
-rw-r--r--devel/qt6-base/files/patch-src_plugins_platforms_wayland_qwaylandshellsurface__p.h23
-rw-r--r--devel/qt6-base/files/patch-src_plugins_tls_openssl_qopenssl__p.h4
-rw-r--r--devel/qt6-base/files/patch-src_plugins_tls_openssl_qsslcontext__openssl.cpp26
-rw-r--r--devel/qt6-base/files/patch-src_plugins_tls_openssl_qsslsocket__openssl__symbols.cpp22
-rw-r--r--devel/qt6-base/files/patch-src_plugins_tls_openssl_qsslsocket__openssl__symbols__p.h12
-rw-r--r--devel/qt6-base/files/patch-src_plugins_tls_openssl_qtls__openssl.cpp4
-rw-r--r--devel/qt6-base/files/patch-src_plugins_tls_openssl_qx509__openssl.cpp6
-rw-r--r--devel/qt6-base/pkg-plist457
17 files changed, 511 insertions, 200 deletions
diff --git a/devel/qt6-base/Makefile b/devel/qt6-base/Makefile
index 623bd75568a4..3520f858266b 100644
--- a/devel/qt6-base/Makefile
+++ b/devel/qt6-base/Makefile
@@ -1,6 +1,6 @@
PORTNAME= base
DISTVERSION= ${QT6_VERSION}
-PORTREVISION= 2
+PORTREVISION= 1
CATEGORIES= devel
PKGNAMEPREFIX= qt6-
@@ -31,7 +31,6 @@ LIB_DEPENDS= libatk-1.0.so:accessibility/at-spi2-core \
libpng16.so:graphics/png \
libudev.so:devel/libudev-devd \
libvulkan.so:graphics/vulkan-loader \
- libwayland-client.so:graphics/wayland \
libxkbcommon.so:x11/libxkbcommon \
libzstd.so:archivers/zstd
@@ -64,13 +63,17 @@ CMAKE_OFF+= FEATURE_sql_mysql \
# zstd from base fails to compress files during the build (error 11: unsupported argument)
BINARY_ALIAS= zstd=${LOCALBASE}/bin/zstd
-OPTIONS_DEFINE= CUPS X11
-OPTIONS_DEFAULT= CUPS X11
+OPTIONS_DEFINE= CUPS WAYLAND X11
+OPTIONS_DEFAULT= CUPS WAYLAND X11
OPTIONS_SUB= yes
CUPS_LIB_DEPENDS= libcups.so:print/cups
CUPS_CMAKE_BOOL= FEATURE_cups
+WAYLAND_LIB_DEPENDS= libwayland-client.so:graphics/wayland
+WAYLAND_CMAKE_BOOL= FEATURE_qtwaylandscanner \
+ FEATURE_wayland
+
X11_LIB_DEPENDS= libxcb-cursor.so:x11/xcb-util-cursor \
libxcb-icccm.so:x11/xcb-util-wm \
libxcb-image.so:x11/xcb-util-image \
diff --git a/devel/qt6-base/distinfo b/devel/qt6-base/distinfo
index f536c16bbf58..fb3b1da1b813 100644
--- a/devel/qt6-base/distinfo
+++ b/devel/qt6-base/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1759303163
-SHA256 (KDE/Qt/6.9.3/qtbase-everywhere-src-6.9.3.tar.xz) = c5a1a2f660356ec081febfa782998ae5ddbc5925117e64f50e4be9cd45b8dc6e
-SIZE (KDE/Qt/6.9.3/qtbase-everywhere-src-6.9.3.tar.xz) = 49856272
+TIMESTAMP = 1763965089
+SHA256 (KDE/Qt/6.10.1/qtbase-everywhere-src-6.10.1.tar.xz) = 5a6226f7e23db51fdc3223121eba53f3f5447cf0cc4d6cb82a3a2df7a65d265d
+SIZE (KDE/Qt/6.10.1/qtbase-everywhere-src-6.10.1.tar.xz) = 50234516
diff --git a/devel/qt6-base/files/patch-sock_seqpacket b/devel/qt6-base/files/patch-sock_seqpacket
deleted file mode 100644
index 0ce628239939..000000000000
--- a/devel/qt6-base/files/patch-sock_seqpacket
+++ /dev/null
@@ -1,105 +0,0 @@
-https://codereview.qt-project.org/c/qt/qtbase/+/681531
-https://codereview.qt-project.org/c/qt/qtbase/+/682568
-
-From 8e06365bee31ef5a1980b7b24d1564e3d769cfc7 Mon Sep 17 00:00:00 2001
-From: Gleb Popov <arrowd@FreeBSD.org>
-Date: Thu, 2 Oct 2025 13:14:54 +0300
-Subject: [PATCH] QNativeSocketEngine::read: Only treat readBytes==0 as a EOF
- condition with stream sockets
-
-This change also covers SOCK_SEQPACKET type of sockets, which isn't great,
-but allows to avoid an endless polling loop when waiting for read on
-a disconnected socket.
-
-Pick-to: 6.10
-Change-Id: I6117b97c2c9b775e9e6fe9757bf4374365e3227d
-Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
----
- src/network/socket/qnativesocketengine.cpp | 11 +++++------
- 1 file changed, 5 insertions(+), 6 deletions(-)
-
-diff --git src/network/socket/qnativesocketengine.cpp src/network/socket/qnativesocketengine.cpp
-index f33e5a26bd94..4c83ef7e5df6 100644
---- src/network/socket/qnativesocketengine.cpp
-+++ src/network/socket/qnativesocketengine.cpp
-@@ -910,12 +910,11 @@ qint64 QNativeSocketEngine::read(char *data, qint64 maxSize)
-
- qint64 readBytes = d->nativeRead(data, maxSize);
-
-- // Handle remote close
-- if (readBytes == 0 && (d->socketType == QAbstractSocket::TcpSocket
--#ifndef QT_NO_SCTP
-- || d->socketType == QAbstractSocket::SctpSocket
--#endif
-- )) {
-+ // Handle remote close.
-+ // Non-datagram socket types signal the EOF state with a zero read.
-+ // Note that it is perfectly fine to have a 0-byte message with datagram
-+ // sockets (SOCK_DGRAM or SOCK_SEQPACKET).
-+ if (readBytes == 0 && d->socketType != QAbstractSocket::UdpSocket) {
- d->setError(QAbstractSocket::RemoteHostClosedError,
- QNativeSocketEnginePrivate::RemoteHostClosedErrorString);
- close();
---
-2.43.0
-
-From a395c091a56781352113670b72ba619367486e7e Mon Sep 17 00:00:00 2001
-From: Gleb Popov <arrowd@FreeBSD.org>
-Date: Tue, 7 Oct 2025 10:53:18 +0300
-Subject: [PATCH] Teach QNativeSocketEnginePrivate::fetchConnectionParameters()
- about SOCK_SEQPACKET
-
-Pick-to: 6.10
-Change-Id: I4136ef3b4c198e3bd155884bde53171bd34959e4
-Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
----
- .../socket/qnativesocketengine_unix.cpp | 23 ++++++++++++-------
- 1 file changed, 15 insertions(+), 8 deletions(-)
-
-diff --git src/network/socket/qnativesocketengine_unix.cpp src/network/socket/qnativesocketengine_unix.cpp
-index b5fbb5c2e003..bcd9aecdea97 100644
---- src/network/socket/qnativesocketengine_unix.cpp
-+++ src/network/socket/qnativesocketengine_unix.cpp
-@@ -1244,6 +1244,7 @@ bool QNativeSocketEnginePrivate::fetchConnectionParameters()
- QT_SOCKOPTLEN_T valueSize = sizeof(int);
- if (::getsockopt(socketDescriptor, SOL_SOCKET, SO_TYPE, &value, &valueSize) == 0) {
- if (value == SOCK_STREAM) {
-+ socketType = QAbstractSocket::TcpSocket;
- #ifndef QT_NO_SCTP
- if (option(QNativeSocketEngine::MaxStreamsSocketOption) != -1) {
- socketType = QAbstractSocket::SctpSocket;
-@@ -1266,17 +1267,23 @@ bool QNativeSocketEnginePrivate::fetchConnectionParameters()
- return false;
- }
- }
-- } else {
-- socketType = QAbstractSocket::TcpSocket;
- }
--#else
-- socketType = QAbstractSocket::TcpSocket;
-+#endif
-+ } else if (value == SOCK_DGRAM) {
-+ socketType = QAbstractSocket::UdpSocket;
-+#ifdef SOCK_SEQPACKET
-+ } else if (value == SOCK_SEQPACKET) {
-+ // We approximate the SEQPACKET socket type to TCP, because
-+ // this enum is actually used to determine if the socket type has
-+ // a notion of connection. SOCK_DGRAM are connectionless, while
-+ // SOCK_STREAM and SOCK_SEQPACKET are connection-orientired.
-+ // This mapping is still suboptimal, because it is possible to send
-+ // a 0-byte packet via SEQPACKET socket and Qt will treat it as
-+ // a disconnect.
-+ socketType = QAbstractSocket::TcpSocket;
- #endif
- } else {
-- if (value == SOCK_DGRAM)
-- socketType = QAbstractSocket::UdpSocket;
-- else
-- socketType = QAbstractSocket::UnknownSocketType;
-+ socketType = QAbstractSocket::UnknownSocketType;
- }
- }
- #if defined (QNATIVESOCKETENGINE_DEBUG)
---
-2.43.0
-
diff --git a/devel/qt6-base/files/patch-src_corelib_CMakeLists.txt b/devel/qt6-base/files/patch-src_corelib_CMakeLists.txt
index 32dfb0e5e986..f816905017cc 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 2025-02-19 13:05:34 UTC
+--- src/corelib/CMakeLists.txt.orig 2025-05-14 09:43:58 UTC
+++ src/corelib/CMakeLists.txt
-@@ -402,6 +402,10 @@ endif()
+@@ -412,6 +412,10 @@ endif()
target_link_libraries(Platform INTERFACE Threads::Threads)
endif()
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 5047f42ef687..a0bb0a31a996 100644
--- a/devel/qt6-base/files/patch-src_corelib_global_qcompilerdetection.h
+++ b/devel/qt6-base/files/patch-src_corelib_global_qcompilerdetection.h
@@ -5,9 +5,9 @@ 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 2025-05-28 10:22:57 UTC
+--- src/corelib/global/qcompilerdetection.h.orig 2025-05-14 09:43:58 UTC
+++ src/corelib/global/qcompilerdetection.h
-@@ -966,7 +966,7 @@
+@@ -972,7 +972,7 @@
# define Q_REQUIRED_RESULT [[nodiscard]]
#endif
diff --git a/devel/qt6-base/files/patch-src_corelib_io_qlockfile__unix.cpp b/devel/qt6-base/files/patch-src_corelib_io_qlockfile__unix.cpp
index 776dd9fd0447..05b9ba9b69f0 100644
--- a/devel/qt6-base/files/patch-src_corelib_io_qlockfile__unix.cpp
+++ b/devel/qt6-base/files/patch-src_corelib_io_qlockfile__unix.cpp
@@ -1,6 +1,6 @@
---- src/corelib/io/qlockfile_unix.cpp.orig 2024-11-14 11:02:40 UTC
+--- src/corelib/io/qlockfile_unix.cpp.orig 2025-05-14 09:43:58 UTC
+++ src/corelib/io/qlockfile_unix.cpp
-@@ -46,6 +46,8 @@
+@@ -47,6 +47,8 @@
# include <sys/sysctl.h>
# if !defined(Q_OS_NETBSD)
# include <sys/user.h>
@@ -9,7 +9,7 @@
# endif
#endif
-@@ -237,23 +239,44 @@ QString QLockFilePrivate::processNameByPid(qint64 pid)
+@@ -238,23 +240,44 @@ QString QLockFilePrivate::processNameByPid(qint64 pid)
struct kinfo_proc kp;
int mib[6] = { CTL_KERN, KERN_PROC, KERN_PROC_PID, (int)pid, sizeof(struct kinfo_proc), 1 };
# else
diff --git a/devel/qt6-base/files/patch-src_corelib_time_qtimezoneprivate__tz.cpp b/devel/qt6-base/files/patch-src_corelib_time_qtimezoneprivate__tz.cpp
index e77da3e4be7a..0c9359be1f14 100644
--- a/devel/qt6-base/files/patch-src_corelib_time_qtimezoneprivate__tz.cpp
+++ b/devel/qt6-base/files/patch-src_corelib_time_qtimezoneprivate__tz.cpp
@@ -1,6 +1,6 @@
---- src/corelib/time/qtimezoneprivate_tz.cpp.orig 2025-03-11 12:45:59 UTC
+--- src/corelib/time/qtimezoneprivate_tz.cpp.orig 2025-05-14 09:43:58 UTC
+++ src/corelib/time/qtimezoneprivate_tz.cpp
-@@ -1312,8 +1312,16 @@ class ZoneNameReader (public)
+@@ -1313,8 +1313,16 @@ class ZoneNameReader (public)
const StatIdent local = identify("/etc/localtime");
const StatIdent tz = identify("/etc/TZ");
const StatIdent timezone = identify("/etc/timezone");
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
index a61cd8a94a13..4f6b594d0575 100644
--- a/devel/qt6-base/files/patch-src_network_socket_qnativesocketengine__unix.cpp
+++ b/devel/qt6-base/files/patch-src_network_socket_qnativesocketengine__unix.cpp
@@ -1,8 +1,8 @@
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.orig 2025-05-14 09:43:58 UTC
+++ src/network/socket/qnativesocketengine_unix.cpp
-@@ -1379,7 +1379,7 @@ int QNativeSocketEnginePrivate::nativeSelect(QDeadline
+@@ -1387,7 +1387,7 @@ int QNativeSocketEnginePrivate::nativeSelect(QDeadline
}
static const short read_flags = POLLIN | POLLHUP | POLLERR;
diff --git a/devel/qt6-base/files/patch-src_plugins_platforms_wayland_plugins_shellintegration_xdg-shell_qwaylandxdgshell__p.h b/devel/qt6-base/files/patch-src_plugins_platforms_wayland_plugins_shellintegration_xdg-shell_qwaylandxdgshell__p.h
new file mode 100644
index 000000000000..ac5c4f661c66
--- /dev/null
+++ b/devel/qt6-base/files/patch-src_plugins_platforms_wayland_plugins_shellintegration_xdg-shell_qwaylandxdgshell__p.h
@@ -0,0 +1,13 @@
+Companion change to patch-src_plugins_shellintegration_xdg-shell_qwaylandxdgshell__p.h
+
+--- src/plugins/platforms/wayland/plugins/shellintegration/xdg-shell/qwaylandxdgshell_p.h.orig 2025-05-14 09:43:58 UTC
++++ src/plugins/platforms/wayland/plugins/shellintegration/xdg-shell/qwaylandxdgshell_p.h
+@@ -74,7 +74,7 @@ class Q_WAYLANDCLIENT_EXPORT QWaylandXdgSurface : publ
+
+ void setSizeHints();
+
+- void *nativeResource(const QByteArray &resource);
++ void *nativeResource(const QByteArray &resource) override;
+
+ std::any surfaceRole() const override;
+
diff --git a/devel/qt6-base/files/patch-src_plugins_platforms_wayland_qwaylandshellsurface__p.h b/devel/qt6-base/files/patch-src_plugins_platforms_wayland_qwaylandshellsurface__p.h
new file mode 100644
index 000000000000..e0728427ffa9
--- /dev/null
+++ b/devel/qt6-base/files/patch-src_plugins_platforms_wayland_qwaylandshellsurface__p.h
@@ -0,0 +1,23 @@
+Add QWaylandShellSurface::nativeResource() to allow using it instead of
+surfaceRole(). The problem with latter is that it relies on RTTI, which is not
+stable across shared modules loaded with RTLD_LOCAL.
+
+x11/plasma6-layer-shell-qt calls into this private API and crashes. Linux/GCC
+users are not seeing this because libstdc++ use different algorithm for comparing
+RTTI. Our libc++ can be switched to this algorithm too by building with
+-DLIBCXX_TYPEINFO_COMPARISON_IMPLEMENTATION=2, but this is too drastic approach.
+
+Related URLs:
+* https://bugs.kde.org/show_bug.cgi?id=479679
+* https://github.com/llvm/llvm-project/issues/36746
+
+--- src/plugins/platforms/wayland/qwaylandshellsurface_p.h.orig 2025-05-14 09:43:58 UTC
++++ src/plugins/platforms/wayland/qwaylandshellsurface_p.h
+@@ -84,6 +84,7 @@ class Q_WAYLANDCLIENT_EXPORT QWaylandShellSurface : pu
+ QPlatformWindow *platformWindow();
+ struct wl_surface *wlSurface();
+
++ virtual void* nativeResource(const QByteArray&) { return nullptr; }
+ virtual std::any surfaceRole() const { return std::any(); };
+
+ virtual void attachPopup(QWaylandShellSurface *popup) { Q_UNUSED(popup); }
diff --git a/devel/qt6-base/files/patch-src_plugins_tls_openssl_qopenssl__p.h b/devel/qt6-base/files/patch-src_plugins_tls_openssl_qopenssl__p.h
index e6298f935613..ec2e8651c07f 100644
--- a/devel/qt6-base/files/patch-src_plugins_tls_openssl_qopenssl__p.h
+++ b/devel/qt6-base/files/patch-src_plugins_tls_openssl_qopenssl__p.h
@@ -1,6 +1,6 @@
---- src/plugins/tls/openssl/qopenssl_p.h.orig 2023-09-21 19:24:26 UTC
+--- src/plugins/tls/openssl/qopenssl_p.h.orig 2025-05-14 09:43:58 UTC
+++ src/plugins/tls/openssl/qopenssl_p.h
-@@ -70,6 +70,13 @@ QT_BEGIN_NAMESPACE
+@@ -71,6 +71,13 @@ QT_BEGIN_NAMESPACE
QT_BEGIN_NAMESPACE
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 02dc9a1f8e2a..010b3de27a8c 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,18 +1,18 @@
---- src/plugins/tls/openssl/qsslcontext_openssl.cpp.orig 2025-02-19 13:05:34 UTC
+--- src/plugins/tls/openssl/qsslcontext_openssl.cpp.orig 2025-05-14 09:43:58 UTC
+++ src/plugins/tls/openssl/qsslcontext_openssl.cpp
-@@ -49,9 +49,9 @@ extern "C" int q_verify_cookie_callback(SSL *ssl, cons
- }
- #endif // dtls
+@@ -36,9 +36,9 @@ int qt_OCSP_status_server_callback(SSL *ssl, void *);
+ int qt_OCSP_status_server_callback(SSL *ssl, void *);
+ #endif // ocsp
-#ifdef TLS1_3_VERSION
+#if defined(TLS1_3_VERSION) && !defined(LIBRESSL_VERSION_NUMBER)
- extern "C" int q_ssl_sess_set_new_cb(SSL *context, SSL_SESSION *session);
+ int q_ssl_sess_set_new_cb(SSL *context, SSL_SESSION *session);
-#endif // TLS1_3_VERSION
-+#endif // TLS1_3_VERSION && LIBRESSL_VERSION_NUMBE
++#endif // TLS1_3_VERSION && LIBRESSL_VERSION_NUMBER
+
+ } // namespace QTlsPrivate
- static inline QString msgErrorSettingBackendConfig(const QString &why)
- {
-@@ -370,9 +370,11 @@ QT_WARNING_POP
+@@ -369,9 +369,11 @@ QT_WARNING_POP
return;
}
@@ -24,7 +24,7 @@
const long anyVersion =
#if QT_CONFIG(dtls)
-@@ -663,14 +665,14 @@ QT_WARNING_POP
+@@ -662,14 +664,14 @@ QT_WARNING_POP
q_SSL_CTX_set_verify(sslContext->ctx, verificationMode, verificationCallback);
}
@@ -32,7 +32,7 @@
+#if defined(TLS1_3_VERSION) && !defined(LIBRESSL_VERSION_NUMBER)
// NewSessionTicket callback:
if (mode == QSslSocket::SslClientMode && !isDtls) {
- q_SSL_CTX_sess_set_new_cb(sslContext->ctx, q_ssl_sess_set_new_cb);
+ q_SSL_CTX_sess_set_new_cb(sslContext->ctx, QTlsPrivate::q_ssl_sess_set_new_cb);
q_SSL_CTX_set_session_cache_mode(sslContext->ctx, SSL_SESS_CACHE_CLIENT);
}
@@ -41,7 +41,7 @@
#if QT_CONFIG(dtls)
// DTLS cookies:
-@@ -760,6 +762,7 @@ void QSslContext::applyBackendConfig(QSslContext *sslC
+@@ -759,6 +761,7 @@ void QSslContext::applyBackendConfig(QSslContext *sslC
}
#endif // ocsp
@@ -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);
-@@ -803,7 +806,9 @@ void QSslContext::applyBackendConfig(QSslContext *sslC
+@@ -802,7 +805,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 23d57861e45e..88a92e4d5b83 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 2025-02-19 13:05:34 UTC
+--- src/plugins/tls/openssl/qsslsocket_openssl_symbols.cpp.orig 2025-05-14 09:43:58 UTC
+++ src/plugins/tls/openssl/qsslsocket_openssl_symbols.cpp
-@@ -113,23 +113,36 @@ DEFINEFUNC(int, EVP_PKEY_up_ref, EVP_PKEY *a, a, retur
+@@ -114,23 +114,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)
-@@ -194,7 +207,9 @@ DEFINEFUNC2(OCSP_RESPONSE *, OCSP_response_create, int
+@@ -195,7 +208,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)
-@@ -215,7 +230,9 @@ DEFINEFUNC2(int, ASN1_STRING_to_UTF8, unsigned char **
+@@ -216,7 +231,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)
-@@ -290,12 +307,14 @@ DEFINEFUNC(X509_STORE *, SSL_CTX_get_cert_store, const
+@@ -291,12 +308,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)
-@@ -764,8 +783,8 @@ static LoadedOpenSsl loadOpenSsl()
+@@ -765,8 +784,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()) {
-@@ -798,8 +817,8 @@ static LoadedOpenSsl loadOpenSsl()
+@@ -799,8 +818,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
-@@ -868,21 +887,34 @@ bool q_resolveOpenSslSymbols()
+@@ -869,21 +888,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)
-@@ -964,7 +996,9 @@ bool q_resolveOpenSslSymbols()
+@@ -965,7 +997,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)
-@@ -1059,12 +1093,14 @@ bool q_resolveOpenSslSymbols()
+@@ -1060,12 +1094,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)
-@@ -1124,7 +1160,9 @@ bool q_resolveOpenSslSymbols()
+@@ -1125,7 +1161,9 @@ bool q_resolveOpenSslSymbols()
RESOLVEFUNC(RSA_free)
RESOLVEFUNC(DH_bits)
diff --git a/devel/qt6-base/files/patch-src_plugins_tls_openssl_qsslsocket__openssl__symbols__p.h b/devel/qt6-base/files/patch-src_plugins_tls_openssl_qsslsocket__openssl__symbols__p.h
index 0f92172a0f4c..bd8bebfad15e 100644
--- a/devel/qt6-base/files/patch-src_plugins_tls_openssl_qsslsocket__openssl__symbols__p.h
+++ b/devel/qt6-base/files/patch-src_plugins_tls_openssl_qsslsocket__openssl__symbols__p.h
@@ -1,6 +1,6 @@
---- src/plugins/tls/openssl/qsslsocket_openssl_symbols_p.h.orig 2024-03-19 15:46:43 UTC
+--- src/plugins/tls/openssl/qsslsocket_openssl_symbols_p.h.orig 2025-05-14 09:43:58 UTC
+++ src/plugins/tls/openssl/qsslsocket_openssl_symbols_p.h
-@@ -46,6 +46,13 @@ QT_BEGIN_NAMESPACE
+@@ -47,6 +47,13 @@ QT_BEGIN_NAMESPACE
#define DUMMYARG
@@ -14,7 +14,7 @@
#if !defined QT_LINKED_OPENSSL
// **************** Shared declarations ******************
// ret func(arg)
-@@ -203,15 +210,32 @@ int q_EVP_PKEY_up_ref(EVP_PKEY *a);
+@@ -204,15 +211,32 @@ int q_EVP_PKEY_up_ref(EVP_PKEY *a);
void q_AUTHORITY_INFO_ACCESS_free(AUTHORITY_INFO_ACCESS *a);
int q_EVP_CIPHER_CTX_reset(EVP_CIPHER_CTX *c);
int q_EVP_PKEY_up_ref(EVP_PKEY *a);
@@ -47,7 +47,7 @@
int q_SSL_session_reused(SSL *a);
qssloptions q_SSL_CTX_set_options(SSL_CTX *ctx, qssloptions op);
int q_OPENSSL_init_ssl(uint64_t opts, const OPENSSL_INIT_SETTINGS *settings);
-@@ -237,8 +261,13 @@ STACK_OF(X509) *q_X509_STORE_CTX_get0_chain(X509_STORE
+@@ -238,8 +262,13 @@ STACK_OF(X509) *q_X509_STORE_CTX_get0_chain(X509_STORE
# define q_SSL_load_error_strings() q_OPENSSL_init_ssl(OPENSSL_INIT_LOAD_SSL_STRINGS \
| OPENSSL_INIT_LOAD_CRYPTO_STRINGS, NULL)
@@ -61,7 +61,7 @@
#define q_OPENSSL_add_all_algorithms_conf() q_OPENSSL_init_crypto(OPENSSL_INIT_ADD_ALL_CIPHERS \
| OPENSSL_INIT_ADD_ALL_DIGESTS \
-@@ -423,12 +452,14 @@ X509_STORE *q_SSL_CTX_get_cert_store(const SSL_CTX *a)
+@@ -424,12 +453,14 @@ X509_STORE *q_SSL_CTX_get_cert_store(const SSL_CTX *a)
int q_SSL_CTX_use_PrivateKey(SSL_CTX *a, EVP_PKEY *b);
int q_SSL_CTX_use_PrivateKey_file(SSL_CTX *a, const char *b, int c);
X509_STORE *q_SSL_CTX_get_cert_store(const SSL_CTX *a);
@@ -76,7 +76,7 @@
void q_SSL_free(SSL *a);
STACK_OF(SSL_CIPHER) *q_SSL_get_ciphers(const SSL *a);
const SSL_CIPHER *q_SSL_get_current_cipher(SSL *a);
-@@ -537,14 +568,26 @@ void q_PKCS12_free(PKCS12 *pkcs12);
+@@ -538,14 +569,26 @@ void q_PKCS12_free(PKCS12 *pkcs12);
#define q_BIO_get_mem_data(b, pp) (int)q_BIO_ctrl(b,BIO_CTRL_INFO,0,(char *)pp)
#define q_BIO_pending(b) (int)q_BIO_ctrl(b,BIO_CTRL_PENDING,0,NULL)
#define q_SSL_CTX_set_mode(ctx,op) q_SSL_CTX_ctrl((ctx),SSL_CTRL_MODE,(op),NULL)
diff --git a/devel/qt6-base/files/patch-src_plugins_tls_openssl_qtls__openssl.cpp b/devel/qt6-base/files/patch-src_plugins_tls_openssl_qtls__openssl.cpp
index e0a2e68f7f96..26499c299a37 100644
--- a/devel/qt6-base/files/patch-src_plugins_tls_openssl_qtls__openssl.cpp
+++ b/devel/qt6-base/files/patch-src_plugins_tls_openssl_qtls__openssl.cpp
@@ -1,6 +1,6 @@
---- src/plugins/tls/openssl/qtls_openssl.cpp.orig 2023-09-21 19:24:26 UTC
+--- src/plugins/tls/openssl/qtls_openssl.cpp.orig 2025-05-14 09:43:58 UTC
+++ src/plugins/tls/openssl/qtls_openssl.cpp
-@@ -1438,13 +1438,13 @@ bool TlsCryptographOpenSSL::initSslContext()
+@@ -1435,13 +1435,13 @@ bool TlsCryptographOpenSSL::initSslContext()
else if (mode == QSslSocket::SslServerMode)
q_SSL_set_psk_server_callback(ssl, &q_ssl_psk_server_callback);
diff --git a/devel/qt6-base/files/patch-src_plugins_tls_openssl_qx509__openssl.cpp b/devel/qt6-base/files/patch-src_plugins_tls_openssl_qx509__openssl.cpp
index a391e32bdd42..52a9061e792a 100644
--- a/devel/qt6-base/files/patch-src_plugins_tls_openssl_qx509__openssl.cpp
+++ b/devel/qt6-base/files/patch-src_plugins_tls_openssl_qx509__openssl.cpp
@@ -1,6 +1,6 @@
---- src/plugins/tls/openssl/qx509_openssl.cpp.orig 2024-03-19 15:46:43 UTC
+--- src/plugins/tls/openssl/qx509_openssl.cpp.orig 2025-05-14 09:43:58 UTC
+++ src/plugins/tls/openssl/qx509_openssl.cpp
-@@ -190,7 +190,11 @@ QVariant x509UnknownExtensionToValue(X509_EXTENSION *e
+@@ -191,7 +191,11 @@ QVariant x509UnknownExtensionToValue(X509_EXTENSION *e
QVariantList list;
bool isMap = false;
@@ -12,7 +12,7 @@
CONF_VALUE *nval = q_SKM_sk_value(CONF_VALUE, val, j);
if (nval->name && nval->value) {
isMap = true;
-@@ -286,7 +290,11 @@ QVariant x509ExtensionToValue(X509_EXTENSION *ext)
+@@ -287,7 +291,11 @@ QVariant x509ExtensionToValue(X509_EXTENSION *ext)
if (!info)
return {};
QVariantMap result;
diff --git a/devel/qt6-base/pkg-plist b/devel/qt6-base/pkg-plist
index 5c67b6fac4c8..962c4b4e675d 100644
--- a/devel/qt6-base/pkg-plist
+++ b/devel/qt6-base/pkg-plist
@@ -31,7 +31,6 @@ bin/qmake6
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qabstractitemmodel_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qabstractproxymodel_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qanimationgroup_p.h
-%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qbytedata_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qcalendarbackend_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qcalendarmath_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qcborcommon_p.h
@@ -51,6 +50,7 @@ bin/qmake6
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qduplicatetracker_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qelfparser_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qendian_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qexpected_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qeventdispatcher_glib_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qeventdispatcher_unix_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qeventloop_p.h
@@ -76,6 +76,7 @@ bin/qmake6
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qfutex_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qfutureinterface_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qfuturewatcher_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qgettid_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_p.h
@@ -85,7 +86,6 @@ bin/qmake6
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qipaddress_p.h
%%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_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qjson_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qjsonparser_p.h
@@ -99,6 +99,7 @@ bin/qmake6
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qlockfile_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qlocking_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qlogging_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qloggingcategory_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qloggingregistry_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qmakearray_p.h
%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qmetaobject_moc_p.h
@@ -429,6 +430,7 @@ bin/qmake6
%%QT_INCDIR%%/QtCore/QQueue
%%QT_INCDIR%%/QtCore/QRandomGenerator
%%QT_INCDIR%%/QtCore/QRandomGenerator64
+%%QT_INCDIR%%/QtCore/QRangeModel
%%QT_INCDIR%%/QtCore/QReadLocker
%%QT_INCDIR%%/QtCore/QReadWriteLock
%%QT_INCDIR%%/QtCore/QRect
@@ -510,6 +512,7 @@ bin/qmake6
%%QT_INCDIR%%/QtCore/QThreadPool
%%QT_INCDIR%%/QtCore/QThreadStorage
%%QT_INCDIR%%/QtCore/QThreadStorageData
+%%QT_INCDIR%%/QtCore/QThreadStorageTraits
%%QT_INCDIR%%/QtCore/QTime
%%QT_INCDIR%%/QtCore/QTimeLine
%%QT_INCDIR%%/QtCore/QTimeZone
@@ -589,6 +592,7 @@ bin/qmake6
%%QT_INCDIR%%/QtCore/QtPluginInstanceFunction
%%QT_INCDIR%%/QtCore/QtPluginMetaDataFunction
%%QT_INCDIR%%/QtCore/QtPreprocessorSupport
+%%QT_INCDIR%%/QtCore/QtPrivate
%%QT_INCDIR%%/QtCore/QtProcessorDetection
%%QT_INCDIR%%/QtCore/QtResource
%%QT_INCDIR%%/QtCore/QtStartUpFunction
@@ -620,6 +624,7 @@ bin/qmake6
%%QT_INCDIR%%/QtCore/qabstractnativeeventfilter.h
%%QT_INCDIR%%/QtCore/qabstractproxymodel.h
%%QT_INCDIR%%/QtCore/qalgorithms.h
+%%QT_INCDIR%%/QtCore/qalloc.h
%%QT_INCDIR%%/QtCore/qanimationgroup.h
%%QT_INCDIR%%/QtCore/qanystringview.h
%%QT_INCDIR%%/QtCore/qapplicationstatic.h
@@ -651,6 +656,7 @@ bin/qmake6
%%QT_INCDIR%%/QtCore/qcborstreamwriter.h
%%QT_INCDIR%%/QtCore/qcborvalue.h
%%QT_INCDIR%%/QtCore/qchar.h
+%%QT_INCDIR%%/QtCore/qcheckedint_impl.h
%%QT_INCDIR%%/QtCore/qchronotimer.h
%%QT_INCDIR%%/QtCore/qcollator.h
%%QT_INCDIR%%/QtCore/qcommandlineoption.h
@@ -710,6 +716,7 @@ bin/qmake6
%%QT_INCDIR%%/QtCore/qiodevicebase.h
%%QT_INCDIR%%/QtCore/qitemselectionmodel.h
%%QT_INCDIR%%/QtCore/qiterable.h
+%%QT_INCDIR%%/QtCore/qiterable_impl.h
%%QT_INCDIR%%/QtCore/qiterator.h
%%QT_INCDIR%%/QtCore/qjsonarray.h
%%QT_INCDIR%%/QtCore/qjsondocument.h
@@ -765,6 +772,8 @@ bin/qmake6
%%QT_INCDIR%%/QtCore/qpropertyprivate.h
%%QT_INCDIR%%/QtCore/qqueue.h
%%QT_INCDIR%%/QtCore/qrandom.h
+%%QT_INCDIR%%/QtCore/qrangemodel.h
+%%QT_INCDIR%%/QtCore/qrangemodel_impl.h
%%QT_INCDIR%%/QtCore/qreadwritelock.h
%%QT_INCDIR%%/QtCore/qrect.h
%%QT_INCDIR%%/QtCore/qrefcount.h
@@ -975,6 +984,7 @@ bin/qmake6
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qabstractfileiconprovider_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qabstractlayoutstyleinfo_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qabstracttextdocumentlayout_p.h
+%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qaccessibilityhints_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qaccessiblebridgeutils_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qaccessiblecache_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qaccessiblehelper_p.h
@@ -1005,12 +1015,14 @@ bin/qmake6
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qcssutil_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qcursor_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qdatabuffer_p.h
+%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qdbuslistener_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qdbusmenuadaptor_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qdbusmenubar_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qdbusmenuconnection_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qdbusmenuregistrarproxy_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qdbusmenutypes_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qdbusplatformmenu_p.h
+%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qdbussettings_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
@@ -1048,9 +1060,11 @@ bin/qmake6
%%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/qgenericunixthemes_p.h
+%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qgenericunixtheme_p.h
%%X11%%%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qglxconvenience_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qglyphrun_p.h
+%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qgnomeportalinterface_p.h
+%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qgnometheme_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qgrayraster_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qgridlayoutengine_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qguiapplication_p.h
@@ -1071,6 +1085,7 @@ bin/qmake6
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qinputdevicemanager_p_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qinputmethod_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qinternalmimedata_p.h
+%%WAYLAND%%%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qkdetheme_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qkeymapper_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qkeysequence_p.h
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qktxhandler_p.h
@@ -1215,6 +1230,7 @@ bin/qmake6
%%QT_INCDIR%%/QtGui/QAbstractFileIconProvider
%%QT_INCDIR%%/QtGui/QAbstractTextDocumentLayout
%%QT_INCDIR%%/QtGui/QAbstractUndoItem
+%%QT_INCDIR%%/QtGui/QAccessibilityHints
%%QT_INCDIR%%/QtGui/QAccessible
%%QT_INCDIR%%/QtGui/QAccessibleActionInterface
%%QT_INCDIR%%/QtGui/QAccessibleAnnouncementEvent
@@ -1451,6 +1467,7 @@ bin/qmake6
%%QT_INCDIR%%/QtGui/properties_interface.h
%%QT_INCDIR%%/QtGui/qabstractfileiconprovider.h
%%QT_INCDIR%%/QtGui/qabstracttextdocumentlayout.h
+%%QT_INCDIR%%/QtGui/qaccessibilityhints.h
%%QT_INCDIR%%/QtGui/qaccessible.h
%%QT_INCDIR%%/QtGui/qaccessible_base.h
%%QT_INCDIR%%/QtGui/qaccessiblebridge.h
@@ -1609,6 +1626,7 @@ bin/qmake6
%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qabstractsocket_p.h
%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qabstractsocketengine_p.h
%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qauthenticator_p.h
+%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qbytedatabuffer_p.h
%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qdecompresshelper_p.h
%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qdnslookup_p.h
%%DTLS%%%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qdtls_p.h
@@ -1672,6 +1690,7 @@ bin/qmake6
%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qsslpresharedkeyauthenticator_p.h
%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qsslserver_p.h
%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qsslsocket_p.h
+%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qtcontenttypeparser_p.h
%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qtcpserver_p.h
%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qtcpsocket_p.h
%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qtldurl_p.h
@@ -1958,6 +1977,7 @@ bin/qmake6
%%QT_INCDIR%%/QtSql/%%FULLVER%%/QtSql/private/qtsqlglobal_p.h
%%QT_INCDIR%%/QtSql/QSql
%%QT_INCDIR%%/QtSql/QSqlDatabase
+%%QT_INCDIR%%/QtSql/QSqlDatabaseDefaultConnectionName
%%QT_INCDIR%%/QtSql/QSqlDriver
%%QT_INCDIR%%/QtSql/QSqlDriverCreator
%%QT_INCDIR%%/QtSql/QSqlDriverCreatorBase
@@ -1994,6 +2014,7 @@ bin/qmake6
%%QT_INCDIR%%/QtSql/qtsqlglobal.h
%%QT_INCDIR%%/QtSql/qtsqlversion.h
%%QT_INCDIR%%/QtTest/%%FULLVER%%/QtTest/private/catch_p.h
+%%QT_INCDIR%%/QtTest/%%FULLVER%%/QtTest/private/cycle_include_p.h
%%QT_INCDIR%%/QtTest/%%FULLVER%%/QtTest/private/cycle_p.h
%%QT_INCDIR%%/QtTest/%%FULLVER%%/QtTest/private/qabstracttestlogger_p.h
%%QT_INCDIR%%/QtTest/%%FULLVER%%/QtTest/private/qbenchmark_p.h
@@ -2069,6 +2090,137 @@ bin/qmake6
%%QT_INCDIR%%/QtTest/qttestglobal.h
%%QT_INCDIR%%/QtTest/qttestlib-config.h
%%QT_INCDIR%%/QtTest/qttestversion.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qtwaylandclient-config_p.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qtwaylandclientglobal_p.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwayland-appmenu.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwayland-cursor-shape-v1.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwayland-fractional-scale-v1.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwayland-hardware-integration.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwayland-pointer-gestures-unstable-v1.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwayland-pointer-warp-v1.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwayland-qt-text-input-method-unstable-v1.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwayland-qt-windowmanager.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwayland-server-buffer-extension.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwayland-tablet-unstable-v2.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwayland-text-input-unstable-v1.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwayland-text-input-unstable-v2.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwayland-text-input-unstable-v3.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwayland-viewporter.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwayland-wayland.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwayland-wlr-data-control-unstable-v1.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwayland-wp-primary-selection-unstable-v1.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwayland-xdg-output-unstable-v1.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwayland-xdg-shell.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwayland-xdg-system-bell-v1.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwayland-xdg-toplevel-drag-v1.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwayland-xx-color-management-v4.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandabstractdecoration_p.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandappmenu_p.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandbuffer_p.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandclientbufferintegration_p.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandclientbufferintegrationfactory_p.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandclientbufferintegrationplugin_p.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandclientextension_p.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandclientshellapi_p.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandclipboard_p.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandcolormanagement_p.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandcursor_p.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylanddatacontrolv1_p.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylanddatadevice_p.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylanddatadevicemanager_p.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylanddataoffer_p.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylanddatasource_p.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylanddecorationfactory_p.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylanddecorationplugin_p.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylanddisplay_p.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylanddnd_p.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandeventdispatcher_p.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandfractionalscale_p.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandhardwareintegration_p.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandinputcontext_p.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandinputdevice_p.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandinputdeviceintegration_p.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandinputdeviceintegrationfactory_p.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandinputdeviceintegrationplugin_p.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandinputmethodcontext_p.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandinputmethodeventbuilder_p.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandintegration_p.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandmimehelper_p.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandnativeinterface_p.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandplatformservices_p.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandpointergestures_p.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandprimaryselectionv1_p.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandscreen_p.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandserverbufferintegration_p.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandserverbufferintegrationfactory_p.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandserverbufferintegrationplugin_p.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandsharedmemoryformathelper_p.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandshellintegration_p.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandshellintegrationfactory_p.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandshellintegrationplugin_p.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandshellsurface_p.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandshm_p.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandshmbackingstore_p.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandshmwindow_p.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandsubsurface_p.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandsurface_p.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandtabletv2_p.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandtextinputinterface_p.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandtextinputv1_p.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandtextinputv2_p.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandtextinputv3_p.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandviewport_p.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandvulkaninstance_p.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandvulkanwindow_p.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandwindow_p.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandwindowmanagerintegration_p.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/wayland-appmenu-client-protocol.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/wayland-cursor-shape-v1-client-protocol.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/wayland-fractional-scale-v1-client-protocol.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/wayland-hardware-integration-client-protocol.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/wayland-pointer-gestures-unstable-v1-client-protocol.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/wayland-pointer-warp-v1-client-protocol.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/wayland-qt-text-input-method-unstable-v1-client-protocol.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/wayland-qt-windowmanager-client-protocol.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/wayland-server-buffer-extension-client-protocol.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/wayland-tablet-unstable-v2-client-protocol.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/wayland-text-input-unstable-v1-client-protocol.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/wayland-text-input-unstable-v2-client-protocol.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/wayland-text-input-unstable-v3-client-protocol.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/wayland-viewporter-client-protocol.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/wayland-wayland-client-protocol.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/wayland-wlr-data-control-unstable-v1-client-protocol.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/wayland-wp-primary-selection-unstable-v1-client-protocol.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/wayland-xdg-output-unstable-v1-client-protocol.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/wayland-xdg-shell-client-protocol.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/wayland-xdg-system-bell-v1-client-protocol.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/wayland-xdg-toplevel-drag-v1-client-protocol.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/wayland-xx-color-management-v4-client-protocol.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/QWaylandClientExtension
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/QWaylandClientExtensionTemplate
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/QtWaylandClient
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/QtWaylandClientDepends
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/QtWaylandClientVersion
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/qtwaylandclient-config.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/qtwaylandclientexports.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/qtwaylandclientglobal.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/qtwaylandclientversion.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandClient/qwaylandclientextension.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandGlobal/%%FULLVER%%/QtWaylandGlobal/private/qtwaylandglobal-config_p.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandGlobal/QtWaylandGlobal
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandGlobal/QtWaylandGlobalDepends
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandGlobal/QtWaylandGlobalVersion
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandGlobal/qtwaylandglobal-config.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWaylandGlobal/qtwaylandglobalversion.h
+%%QT_INCDIR%%/QtWidgets/QAccessibleWidgetV2
+%%WAYLAND%%%%QT_INCDIR%%/QtWlShellIntegration/%%FULLVER%%/QtWlShellIntegration/private/qwayland-wayland.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWlShellIntegration/%%FULLVER%%/QtWlShellIntegration/private/qwaylandwlshellintegration_p.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWlShellIntegration/%%FULLVER%%/QtWlShellIntegration/private/qwaylandwlshellsurface_p.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWlShellIntegration/%%FULLVER%%/QtWlShellIntegration/private/wayland-wayland-client-protocol.h
+%%WAYLAND%%%%QT_INCDIR%%/QtWlShellIntegration/QtWlShellIntegration
+%%WAYLAND%%%%QT_INCDIR%%/QtWlShellIntegration/QtWlShellIntegrationDepends
+%%WAYLAND%%%%QT_INCDIR%%/QtWlShellIntegration/QtWlShellIntegrationVersion
+%%WAYLAND%%%%QT_INCDIR%%/QtWlShellIntegration/qtwlshellintegrationversion.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/complexwidgets_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/itemviews_p.h
%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qabstractbutton_p.h
@@ -2567,6 +2719,7 @@ lib/cmake/Qt6/FindGLESv2.cmake
lib/cmake/Qt6/FindGSSAPI.cmake
lib/cmake/Qt6/FindGTK3.cmake
lib/cmake/Qt6/FindInterbase.cmake
+lib/cmake/Qt6/FindJeMalloc.cmake
lib/cmake/Qt6/FindLibb2.cmake
lib/cmake/Qt6/FindLibproxy.cmake
lib/cmake/Qt6/FindLibsystemd.cmake
@@ -2744,6 +2897,7 @@ lib/cmake/Qt6/QtTargetHelpers.cmake
lib/cmake/Qt6/QtTestHelpers.cmake
lib/cmake/Qt6/QtToolHelpers.cmake
lib/cmake/Qt6/QtToolchainHelpers.cmake
+lib/cmake/Qt6/QtTransitiveExtras.cmake.in
lib/cmake/Qt6/QtUnityBuildHelpers.cmake
lib/cmake/Qt6/QtVersionlessAliasTargets.cmake.in
lib/cmake/Qt6/QtVersionlessTargets.cmake.in
@@ -2775,6 +2929,7 @@ lib/cmake/Qt6BuildInternals/Qt6BuildInternalsConfig.cmake
lib/cmake/Qt6BuildInternals/Qt6BuildInternalsConfigVersion.cmake
lib/cmake/Qt6BuildInternals/Qt6BuildInternalsConfigVersionImpl.cmake
lib/cmake/Qt6BuildInternals/QtBuildInternalsExtra.cmake
+lib/cmake/Qt6BuildInternals/QtBuildInternalsHelpers.cmake
lib/cmake/Qt6BuildInternals/QtStandaloneTestTemplateProject/CMakeLists.txt
lib/cmake/Qt6BuildInternals/QtStandaloneTestTemplateProject/Main.cmake
lib/cmake/Qt6BuildInternals/StandaloneTests/QtBaseTestsConfig.cmake
@@ -2787,14 +2942,6 @@ 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
@@ -2993,6 +3140,12 @@ lib/cmake/Qt6Gui/Qt6QVncIntegrationPluginConfigVersion.cmake
lib/cmake/Qt6Gui/Qt6QVncIntegrationPluginConfigVersionImpl.cmake
lib/cmake/Qt6Gui/Qt6QVncIntegrationPluginTargets-%%CMAKE_BUILD_TYPE%%.cmake
lib/cmake/Qt6Gui/Qt6QVncIntegrationPluginTargets.cmake
+%%WAYLAND%%lib/cmake/Qt6Gui/Qt6QWaylandIntegrationPluginAdditionalTargetInfo.cmake
+%%WAYLAND%%lib/cmake/Qt6Gui/Qt6QWaylandIntegrationPluginConfig.cmake
+%%WAYLAND%%lib/cmake/Qt6Gui/Qt6QWaylandIntegrationPluginConfigVersion.cmake
+%%WAYLAND%%lib/cmake/Qt6Gui/Qt6QWaylandIntegrationPluginConfigVersionImpl.cmake
+%%WAYLAND%%lib/cmake/Qt6Gui/Qt6QWaylandIntegrationPluginTargets-%%CMAKE_BUILD_TYPE%%.cmake
+%%WAYLAND%%lib/cmake/Qt6Gui/Qt6QWaylandIntegrationPluginTargets.cmake
%%X11%%lib/cmake/Qt6Gui/Qt6QXcbEglIntegrationPluginAdditionalTargetInfo.cmake
%%X11%%lib/cmake/Qt6Gui/Qt6QXcbEglIntegrationPluginConfig.cmake
%%X11%%lib/cmake/Qt6Gui/Qt6QXcbEglIntegrationPluginConfigVersion.cmake
@@ -3115,14 +3268,6 @@ 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
@@ -3194,6 +3339,96 @@ lib/cmake/Qt6TestPrivate/Qt6TestPrivateDependencies.cmake
lib/cmake/Qt6TestPrivate/Qt6TestPrivateTargets.cmake
lib/cmake/Qt6TestPrivate/Qt6TestPrivateVersionlessAliasTargets.cmake
lib/cmake/Qt6TestPrivate/Qt6TestPrivateVersionlessTargets.cmake
+%%WAYLAND%%lib/cmake/Qt6WaylandClient/Qt6DmaBufServerBufferPluginAdditionalTargetInfo.cmake
+%%WAYLAND%%lib/cmake/Qt6WaylandClient/Qt6DmaBufServerBufferPluginConfig.cmake
+%%WAYLAND%%lib/cmake/Qt6WaylandClient/Qt6DmaBufServerBufferPluginConfigVersion.cmake
+%%WAYLAND%%lib/cmake/Qt6WaylandClient/Qt6DmaBufServerBufferPluginConfigVersionImpl.cmake
+%%WAYLAND%%lib/cmake/Qt6WaylandClient/Qt6DmaBufServerBufferPluginTargets-%%CMAKE_BUILD_TYPE%%.cmake
+%%WAYLAND%%lib/cmake/Qt6WaylandClient/Qt6DmaBufServerBufferPluginTargets.cmake
+%%WAYLAND%%lib/cmake/Qt6WaylandClient/Qt6DrmEglServerBufferPluginAdditionalTargetInfo.cmake
+%%WAYLAND%%lib/cmake/Qt6WaylandClient/Qt6DrmEglServerBufferPluginConfig.cmake
+%%WAYLAND%%lib/cmake/Qt6WaylandClient/Qt6DrmEglServerBufferPluginConfigVersion.cmake
+%%WAYLAND%%lib/cmake/Qt6WaylandClient/Qt6DrmEglServerBufferPluginConfigVersionImpl.cmake
+%%WAYLAND%%lib/cmake/Qt6WaylandClient/Qt6DrmEglServerBufferPluginTargets-%%CMAKE_BUILD_TYPE%%.cmake
+%%WAYLAND%%lib/cmake/Qt6WaylandClient/Qt6DrmEglServerBufferPluginTargets.cmake
+%%WAYLAND%%lib/cmake/Qt6WaylandClient/Qt6QWaylandBradientDecorationPluginAdditionalTargetInfo.cmake
+%%WAYLAND%%lib/cmake/Qt6WaylandClient/Qt6QWaylandBradientDecorationPluginConfig.cmake
+%%WAYLAND%%lib/cmake/Qt6WaylandClient/Qt6QWaylandBradientDecorationPluginConfigVersion.cmake
+%%WAYLAND%%lib/cmake/Qt6WaylandClient/Qt6QWaylandBradientDecorationPluginConfigVersionImpl.cmake
+%%WAYLAND%%lib/cmake/Qt6WaylandClient/Qt6QWaylandBradientDecorationPluginTargets-%%CMAKE_BUILD_TYPE%%.cmake
+%%WAYLAND%%lib/cmake/Qt6WaylandClient/Qt6QWaylandBradientDecorationPluginTargets.cmake
+%%WAYLAND%%lib/cmake/Qt6WaylandClient/Qt6QWaylandEglClientBufferPluginAdditionalTargetInfo.cmake
+%%WAYLAND%%lib/cmake/Qt6WaylandClient/Qt6QWaylandEglClientBufferPluginConfig.cmake
+%%WAYLAND%%lib/cmake/Qt6WaylandClient/Qt6QWaylandEglClientBufferPluginConfigVersion.cmake
+%%WAYLAND%%lib/cmake/Qt6WaylandClient/Qt6QWaylandEglClientBufferPluginConfigVersionImpl.cmake
+%%WAYLAND%%lib/cmake/Qt6WaylandClient/Qt6QWaylandEglClientBufferPluginTargets-%%CMAKE_BUILD_TYPE%%.cmake
+%%WAYLAND%%lib/cmake/Qt6WaylandClient/Qt6QWaylandEglClientBufferPluginTargets.cmake
+%%WAYLAND%%lib/cmake/Qt6WaylandClient/Qt6QWaylandFullScreenShellV1IntegrationPluginAdditionalTargetInfo.cmake
+%%WAYLAND%%lib/cmake/Qt6WaylandClient/Qt6QWaylandFullScreenShellV1IntegrationPluginConfig.cmake
+%%WAYLAND%%lib/cmake/Qt6WaylandClient/Qt6QWaylandFullScreenShellV1IntegrationPluginConfigVersion.cmake
+%%WAYLAND%%lib/cmake/Qt6WaylandClient/Qt6QWaylandFullScreenShellV1IntegrationPluginConfigVersionImpl.cmake
+%%WAYLAND%%lib/cmake/Qt6WaylandClient/Qt6QWaylandFullScreenShellV1IntegrationPluginTargets-%%CMAKE_BUILD_TYPE%%.cmake
+%%WAYLAND%%lib/cmake/Qt6WaylandClient/Qt6QWaylandFullScreenShellV1IntegrationPluginTargets.cmake
+%%WAYLAND%%lib/cmake/Qt6WaylandClient/Qt6QWaylandWlShellIntegrationPluginAdditionalTargetInfo.cmake
+%%WAYLAND%%lib/cmake/Qt6WaylandClient/Qt6QWaylandWlShellIntegrationPluginConfig.cmake
+%%WAYLAND%%lib/cmake/Qt6WaylandClient/Qt6QWaylandWlShellIntegrationPluginConfigVersion.cmake
+%%WAYLAND%%lib/cmake/Qt6WaylandClient/Qt6QWaylandWlShellIntegrationPluginConfigVersionImpl.cmake
+%%WAYLAND%%lib/cmake/Qt6WaylandClient/Qt6QWaylandWlShellIntegrationPluginTargets-%%CMAKE_BUILD_TYPE%%.cmake
+%%WAYLAND%%lib/cmake/Qt6WaylandClient/Qt6QWaylandWlShellIntegrationPluginTargets.cmake
+%%WAYLAND%%lib/cmake/Qt6WaylandClient/Qt6QWaylandXdgShellIntegrationPluginAdditionalTargetInfo.cmake
+%%WAYLAND%%lib/cmake/Qt6WaylandClient/Qt6QWaylandXdgShellIntegrationPluginConfig.cmake
+%%WAYLAND%%lib/cmake/Qt6WaylandClient/Qt6QWaylandXdgShellIntegrationPluginConfigVersion.cmake
+%%WAYLAND%%lib/cmake/Qt6WaylandClient/Qt6QWaylandXdgShellIntegrationPluginConfigVersionImpl.cmake
+%%WAYLAND%%lib/cmake/Qt6WaylandClient/Qt6QWaylandXdgShellIntegrationPluginTargets-%%CMAKE_BUILD_TYPE%%.cmake
+%%WAYLAND%%lib/cmake/Qt6WaylandClient/Qt6QWaylandXdgShellIntegrationPluginTargets.cmake
+%%WAYLAND%%lib/cmake/Qt6WaylandClient/Qt6ShmServerBufferPluginAdditionalTargetInfo.cmake
+%%WAYLAND%%lib/cmake/Qt6WaylandClient/Qt6ShmServerBufferPluginConfig.cmake
+%%WAYLAND%%lib/cmake/Qt6WaylandClient/Qt6ShmServerBufferPluginConfigVersion.cmake
+%%WAYLAND%%lib/cmake/Qt6WaylandClient/Qt6ShmServerBufferPluginConfigVersionImpl.cmake
+%%WAYLAND%%lib/cmake/Qt6WaylandClient/Qt6ShmServerBufferPluginTargets-%%CMAKE_BUILD_TYPE%%.cmake
+%%WAYLAND%%lib/cmake/Qt6WaylandClient/Qt6ShmServerBufferPluginTargets.cmake
+%%WAYLAND%%lib/cmake/Qt6WaylandClient/Qt6VulkanServerBufferPluginAdditionalTargetInfo.cmake
+%%WAYLAND%%lib/cmake/Qt6WaylandClient/Qt6VulkanServerBufferPluginConfig.cmake
+%%WAYLAND%%lib/cmake/Qt6WaylandClient/Qt6VulkanServerBufferPluginConfigVersion.cmake
+%%WAYLAND%%lib/cmake/Qt6WaylandClient/Qt6VulkanServerBufferPluginConfigVersionImpl.cmake
+%%WAYLAND%%lib/cmake/Qt6WaylandClient/Qt6VulkanServerBufferPluginTargets-%%CMAKE_BUILD_TYPE%%.cmake
+%%WAYLAND%%lib/cmake/Qt6WaylandClient/Qt6VulkanServerBufferPluginTargets.cmake
+%%WAYLAND%%lib/cmake/Qt6WaylandClient/Qt6WaylandClientAdditionalTargetInfo.cmake
+%%WAYLAND%%lib/cmake/Qt6WaylandClient/Qt6WaylandClientConfig.cmake
+%%WAYLAND%%lib/cmake/Qt6WaylandClient/Qt6WaylandClientConfigVersion.cmake
+%%WAYLAND%%lib/cmake/Qt6WaylandClient/Qt6WaylandClientConfigVersionImpl.cmake
+%%WAYLAND%%lib/cmake/Qt6WaylandClient/Qt6WaylandClientDependencies.cmake
+%%WAYLAND%%lib/cmake/Qt6WaylandClient/Qt6WaylandClientPlugins.cmake
+%%WAYLAND%%lib/cmake/Qt6WaylandClient/Qt6WaylandClientTargets-%%CMAKE_BUILD_TYPE%%.cmake
+%%WAYLAND%%lib/cmake/Qt6WaylandClient/Qt6WaylandClientTargets.cmake
+%%WAYLAND%%lib/cmake/Qt6WaylandClient/Qt6WaylandClientVersionlessAliasTargets.cmake
+%%WAYLAND%%lib/cmake/Qt6WaylandClient/Qt6WaylandClientVersionlessTargets.cmake
+%%WAYLAND%%lib/cmake/Qt6WaylandClientPrivate/Qt6WaylandClientPrivateAdditionalTargetInfo.cmake
+%%WAYLAND%%lib/cmake/Qt6WaylandClientPrivate/Qt6WaylandClientPrivateConfig.cmake
+%%WAYLAND%%lib/cmake/Qt6WaylandClientPrivate/Qt6WaylandClientPrivateConfigVersion.cmake
+%%WAYLAND%%lib/cmake/Qt6WaylandClientPrivate/Qt6WaylandClientPrivateConfigVersionImpl.cmake
+%%WAYLAND%%lib/cmake/Qt6WaylandClientPrivate/Qt6WaylandClientPrivateDependencies.cmake
+%%WAYLAND%%lib/cmake/Qt6WaylandClientPrivate/Qt6WaylandClientPrivateTargets.cmake
+%%WAYLAND%%lib/cmake/Qt6WaylandClientPrivate/Qt6WaylandClientPrivateVersionlessAliasTargets.cmake
+%%WAYLAND%%lib/cmake/Qt6WaylandClientPrivate/Qt6WaylandClientPrivateVersionlessTargets.cmake
+%%WAYLAND%%lib/cmake/Qt6WaylandGlobalPrivate/Qt6WaylandGlobalPrivateAdditionalTargetInfo.cmake
+%%WAYLAND%%lib/cmake/Qt6WaylandGlobalPrivate/Qt6WaylandGlobalPrivateConfig.cmake
+%%WAYLAND%%lib/cmake/Qt6WaylandGlobalPrivate/Qt6WaylandGlobalPrivateConfigVersion.cmake
+%%WAYLAND%%lib/cmake/Qt6WaylandGlobalPrivate/Qt6WaylandGlobalPrivateConfigVersionImpl.cmake
+%%WAYLAND%%lib/cmake/Qt6WaylandGlobalPrivate/Qt6WaylandGlobalPrivateExtraProperties.cmake
+%%WAYLAND%%lib/cmake/Qt6WaylandGlobalPrivate/Qt6WaylandGlobalPrivateTargets.cmake
+%%WAYLAND%%lib/cmake/Qt6WaylandGlobalPrivate/Qt6WaylandGlobalPrivateVersionlessAliasTargets.cmake
+%%WAYLAND%%lib/cmake/Qt6WaylandGlobalPrivate/Qt6WaylandGlobalPrivateVersionlessTargets.cmake
+%%WAYLAND%%lib/cmake/Qt6WaylandScannerTools/Qt6WaylandClientMacros.cmake
+%%WAYLAND%%lib/cmake/Qt6WaylandScannerTools/Qt6WaylandCompositorMacros.cmake
+%%WAYLAND%%lib/cmake/Qt6WaylandScannerTools/Qt6WaylandScannerToolsAdditionalTargetInfo.cmake
+%%WAYLAND%%lib/cmake/Qt6WaylandScannerTools/Qt6WaylandScannerToolsConfig.cmake
+%%WAYLAND%%lib/cmake/Qt6WaylandScannerTools/Qt6WaylandScannerToolsConfigVersion.cmake
+%%WAYLAND%%lib/cmake/Qt6WaylandScannerTools/Qt6WaylandScannerToolsConfigVersionImpl.cmake
+%%WAYLAND%%lib/cmake/Qt6WaylandScannerTools/Qt6WaylandScannerToolsDependencies.cmake
+%%WAYLAND%%lib/cmake/Qt6WaylandScannerTools/Qt6WaylandScannerToolsTargets-%%CMAKE_BUILD_TYPE%%.cmake
+%%WAYLAND%%lib/cmake/Qt6WaylandScannerTools/Qt6WaylandScannerToolsTargets.cmake
+%%WAYLAND%%lib/cmake/Qt6WaylandScannerTools/Qt6WaylandScannerToolsVersionlessTargets.cmake
lib/cmake/Qt6Widgets/Qt6WidgetsAdditionalTargetInfo.cmake
lib/cmake/Qt6Widgets/Qt6WidgetsConfig.cmake
lib/cmake/Qt6Widgets/Qt6WidgetsConfigVersion.cmake
@@ -3221,6 +3456,15 @@ lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsDependencies.cmake
lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsTargets-%%CMAKE_BUILD_TYPE%%.cmake
lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsTargets.cmake
lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsVersionlessTargets.cmake
+%%WAYLAND%%lib/cmake/Qt6WlShellIntegrationPrivate/Qt6WlShellIntegrationPrivateAdditionalTargetInfo.cmake
+%%WAYLAND%%lib/cmake/Qt6WlShellIntegrationPrivate/Qt6WlShellIntegrationPrivateConfig.cmake
+%%WAYLAND%%lib/cmake/Qt6WlShellIntegrationPrivate/Qt6WlShellIntegrationPrivateConfigVersion.cmake
+%%WAYLAND%%lib/cmake/Qt6WlShellIntegrationPrivate/Qt6WlShellIntegrationPrivateConfigVersionImpl.cmake
+%%WAYLAND%%lib/cmake/Qt6WlShellIntegrationPrivate/Qt6WlShellIntegrationPrivateDependencies.cmake
+%%WAYLAND%%lib/cmake/Qt6WlShellIntegrationPrivate/Qt6WlShellIntegrationPrivateTargets-%%CMAKE_BUILD_TYPE%%.cmake
+%%WAYLAND%%lib/cmake/Qt6WlShellIntegrationPrivate/Qt6WlShellIntegrationPrivateTargets.cmake
+%%WAYLAND%%lib/cmake/Qt6WlShellIntegrationPrivate/Qt6WlShellIntegrationPrivateVersionlessAliasTargets.cmake
+%%WAYLAND%%lib/cmake/Qt6WlShellIntegrationPrivate/Qt6WlShellIntegrationPrivateVersionlessTargets.cmake
%%X11%%lib/cmake/Qt6XcbQpaPrivate/Qt6XcbQpaPrivateAdditionalTargetInfo.cmake
%%X11%%lib/cmake/Qt6XcbQpaPrivate/Qt6XcbQpaPrivateConfig.cmake
%%X11%%lib/cmake/Qt6XcbQpaPrivate/Qt6XcbQpaPrivateConfigVersion.cmake
@@ -3311,10 +3555,18 @@ lib/cmake/Qt6XmlPrivate/Qt6XmlPrivateVersionlessTargets.cmake
%%QT_LIBDIR%%/libQt6Test.so
%%QT_LIBDIR%%/libQt6Test.so.6
%%QT_LIBDIR%%/libQt6Test.so.%%FULLVER%%
+%%WAYLAND%%%%QT_LIBDIR%%/libQt6WaylandClient.prl
+%%WAYLAND%%%%QT_LIBDIR%%/libQt6WaylandClient.so
+%%WAYLAND%%%%QT_LIBDIR%%/libQt6WaylandClient.so.6
+%%WAYLAND%%%%QT_LIBDIR%%/libQt6WaylandClient.so.%%FULLVER%%
%%QT_LIBDIR%%/libQt6Widgets.prl
%%QT_LIBDIR%%/libQt6Widgets.so
%%QT_LIBDIR%%/libQt6Widgets.so.6
%%QT_LIBDIR%%/libQt6Widgets.so.%%FULLVER%%
+%%WAYLAND%%%%QT_LIBDIR%%/libQt6WlShellIntegration.prl
+%%WAYLAND%%%%QT_LIBDIR%%/libQt6WlShellIntegration.so
+%%WAYLAND%%%%QT_LIBDIR%%/libQt6WlShellIntegration.so.6
+%%WAYLAND%%%%QT_LIBDIR%%/libQt6WlShellIntegration.so.%%FULLVER%%
%%X11%%%%QT_LIBDIR%%/libQt6XcbQpa.prl
%%X11%%%%QT_LIBDIR%%/libQt6XcbQpa.so
%%X11%%%%QT_LIBDIR%%/libQt6XcbQpa.so.6
@@ -3323,25 +3575,27 @@ lib/cmake/Qt6XmlPrivate/Qt6XmlPrivateVersionlessTargets.cmake
%%QT_LIBDIR%%/libQt6Xml.so
%%QT_LIBDIR%%/libQt6Xml.so.6
%%QT_LIBDIR%%/libQt6Xml.so.%%FULLVER%%
-%%QT_LIBDIR%%/metatypes/qt6concurrent_%%CMAKE_BUILD_TYPE%%_metatypes.json
-%%QT_LIBDIR%%/metatypes/qt6core_%%CMAKE_BUILD_TYPE%%_metatypes.json
-%%QT_LIBDIR%%/metatypes/qt6dbus_%%CMAKE_BUILD_TYPE%%_metatypes.json
-%%QT_LIBDIR%%/metatypes/qt6devicediscoverysupportprivate_%%CMAKE_BUILD_TYPE%%_metatypes.json
-%%QT_LIBDIR%%/metatypes/qt6exampleiconsprivate_%%CMAKE_BUILD_TYPE%%_metatypes.json
-%%QT_LIBDIR%%/metatypes/qt6examplesassetdownloaderprivate_%%CMAKE_BUILD_TYPE%%_metatypes.json
-%%QT_LIBDIR%%/metatypes/qt6fbsupportprivate_%%CMAKE_BUILD_TYPE%%_metatypes.json
-%%QT_LIBDIR%%/metatypes/qt6gui_%%CMAKE_BUILD_TYPE%%_metatypes.json
-%%QT_LIBDIR%%/metatypes/qt6inputsupportprivate_%%CMAKE_BUILD_TYPE%%_metatypes.json
-%%QT_LIBDIR%%/metatypes/qt6kmssupportprivate_%%CMAKE_BUILD_TYPE%%_metatypes.json
-%%QT_LIBDIR%%/metatypes/qt6network_%%CMAKE_BUILD_TYPE%%_metatypes.json
-%%QT_LIBDIR%%/metatypes/qt6opengl_%%CMAKE_BUILD_TYPE%%_metatypes.json
-%%QT_LIBDIR%%/metatypes/qt6openglwidgets_%%CMAKE_BUILD_TYPE%%_metatypes.json
-%%QT_LIBDIR%%/metatypes/qt6printsupport_%%CMAKE_BUILD_TYPE%%_metatypes.json
-%%QT_LIBDIR%%/metatypes/qt6sql_%%CMAKE_BUILD_TYPE%%_metatypes.json
-%%QT_LIBDIR%%/metatypes/qt6test_%%CMAKE_BUILD_TYPE%%_metatypes.json
-%%QT_LIBDIR%%/metatypes/qt6widgets_%%CMAKE_BUILD_TYPE%%_metatypes.json
-%%X11%%%%QT_LIBDIR%%/metatypes/qt6xcbqpaprivate_%%CMAKE_BUILD_TYPE%%_metatypes.json
-%%QT_LIBDIR%%/metatypes/qt6xml_%%CMAKE_BUILD_TYPE%%_metatypes.json
+%%QT_LIBDIR%%/metatypes/qt6concurrent_metatypes.json
+%%QT_LIBDIR%%/metatypes/qt6core_metatypes.json
+%%QT_LIBDIR%%/metatypes/qt6dbus_metatypes.json
+%%QT_LIBDIR%%/metatypes/qt6devicediscoverysupportprivate_metatypes.json
+%%QT_LIBDIR%%/metatypes/qt6exampleiconsprivate_metatypes.json
+%%QT_LIBDIR%%/metatypes/qt6examplesassetdownloaderprivate_metatypes.json
+%%QT_LIBDIR%%/metatypes/qt6fbsupportprivate_metatypes.json
+%%QT_LIBDIR%%/metatypes/qt6gui_metatypes.json
+%%QT_LIBDIR%%/metatypes/qt6inputsupportprivate_metatypes.json
+%%QT_LIBDIR%%/metatypes/qt6kmssupportprivate_metatypes.json
+%%QT_LIBDIR%%/metatypes/qt6network_metatypes.json
+%%QT_LIBDIR%%/metatypes/qt6opengl_metatypes.json
+%%QT_LIBDIR%%/metatypes/qt6openglwidgets_metatypes.json
+%%QT_LIBDIR%%/metatypes/qt6printsupport_metatypes.json
+%%QT_LIBDIR%%/metatypes/qt6sql_metatypes.json
+%%QT_LIBDIR%%/metatypes/qt6test_metatypes.json
+%%WAYLAND%%%%QT_LIBDIR%%/metatypes/qt6waylandclient_metatypes.json
+%%QT_LIBDIR%%/metatypes/qt6widgets_metatypes.json
+%%WAYLAND%%%%QT_LIBDIR%%/metatypes/qt6wlshellintegrationprivate_metatypes.json
+%%X11%%%%QT_LIBDIR%%/metatypes/qt6xcbqpaprivate_metatypes.json
+%%QT_LIBDIR%%/metatypes/qt6xml_metatypes.json
%%QT_MKSPECDIR%%/REUSE.toml
%%QT_MKSPECDIR%%/aix-g++-64/qmake.conf
%%QT_MKSPECDIR%%/aix-g++-64/qplatformdefs.h
@@ -3720,7 +3974,6 @@ lib/cmake/Qt6XmlPrivate/Qt6XmlPrivateVersionlessTargets.cmake
%%QT_MKSPECDIR%%/macx-xcode/qplatformdefs.h
%%QT_MKSPECDIR%%/modules/README
%%QT_MKSPECDIR%%/modules/qt_lib_concurrent.pri
-%%QT_MKSPECDIR%%/modules/qt_lib_concurrent_private.pri
%%QT_MKSPECDIR%%/modules/qt_lib_core.pri
%%QT_MKSPECDIR%%/modules/qt_lib_core_private.pri
%%QT_MKSPECDIR%%/modules/qt_lib_dbus.pri
@@ -3738,7 +3991,6 @@ lib/cmake/Qt6XmlPrivate/Qt6XmlPrivateVersionlessTargets.cmake
%%QT_MKSPECDIR%%/modules/qt_lib_opengl.pri
%%QT_MKSPECDIR%%/modules/qt_lib_opengl_private.pri
%%QT_MKSPECDIR%%/modules/qt_lib_openglwidgets.pri
-%%QT_MKSPECDIR%%/modules/qt_lib_openglwidgets_private.pri
%%QT_MKSPECDIR%%/modules/qt_lib_printsupport.pri
%%QT_MKSPECDIR%%/modules/qt_lib_printsupport_private.pri
%%QT_MKSPECDIR%%/modules/qt_lib_sql.pri
@@ -3746,8 +3998,12 @@ lib/cmake/Qt6XmlPrivate/Qt6XmlPrivateVersionlessTargets.cmake
%%QT_MKSPECDIR%%/modules/qt_lib_testinternals_private.pri
%%QT_MKSPECDIR%%/modules/qt_lib_testlib.pri
%%QT_MKSPECDIR%%/modules/qt_lib_testlib_private.pri
+%%WAYLAND%%%%QT_MKSPECDIR%%/modules/qt_lib_waylandclient.pri
+%%WAYLAND%%%%QT_MKSPECDIR%%/modules/qt_lib_waylandclient_private.pri
+%%WAYLAND%%%%QT_MKSPECDIR%%/modules/qt_lib_waylandglobal_private.pri
%%QT_MKSPECDIR%%/modules/qt_lib_widgets.pri
%%QT_MKSPECDIR%%/modules/qt_lib_widgets_private.pri
+%%WAYLAND%%%%QT_MKSPECDIR%%/modules/qt_lib_wl_shell_integration_private.pri
%%X11%%%%QT_MKSPECDIR%%/modules/qt_lib_xcb_qpa_lib_private.pri
%%QT_MKSPECDIR%%/modules/qt_lib_xml.pri
%%QT_MKSPECDIR%%/modules/qt_lib_xml_private.pri
@@ -3836,12 +4092,22 @@ lib/cmake/Qt6XmlPrivate/Qt6XmlPrivateVersionlessTargets.cmake
%%QT_PLUGINDIR%%/platforms/libqoffscreen.so
%%QT_PLUGINDIR%%/platforms/libqvkkhrdisplay.so
%%QT_PLUGINDIR%%/platforms/libqvnc.so
+%%WAYLAND%%%%QT_PLUGINDIR%%/platforms/libqwayland.so
%%X11%%%%QT_PLUGINDIR%%/platforms/libqxcb.so
%%QT_PLUGINDIR%%/platformthemes/libqgtk3.so
%%QT_PLUGINDIR%%/platformthemes/libqxdgdesktopportal.so
%%CUPS%%%%QT_PLUGINDIR%%/printsupport/libcupsprintersupport.so
%%QT_PLUGINDIR%%/tls/libqcertonlybackend.so
%%QT_PLUGINDIR%%/tls/libqopensslbackend.so
+%%WAYLAND%%%%QT_PLUGINDIR%%/wayland-decoration-client/libbradient.so
+%%WAYLAND%%%%QT_PLUGINDIR%%/wayland-graphics-integration-client/libdmabuf-server.so
+%%WAYLAND%%%%QT_PLUGINDIR%%/wayland-graphics-integration-client/libdrm-egl-server.so
+%%WAYLAND%%%%QT_PLUGINDIR%%/wayland-graphics-integration-client/libqt-plugin-wayland-egl.so
+%%WAYLAND%%%%QT_PLUGINDIR%%/wayland-graphics-integration-client/libshm-emulation-server.so
+%%WAYLAND%%%%QT_PLUGINDIR%%/wayland-graphics-integration-client/libvulkan-server.so
+%%WAYLAND%%%%QT_PLUGINDIR%%/wayland-shell-integration/libfullscreen-shell-v1.so
+%%WAYLAND%%%%QT_PLUGINDIR%%/wayland-shell-integration/libwl-shell-plugin.so
+%%WAYLAND%%%%QT_PLUGINDIR%%/wayland-shell-integration/libxdg-shell.so
%%X11%%%%QT_PLUGINDIR%%/xcbglintegrations/libqxcb-egl-integration.so
%%X11%%%%QT_PLUGINDIR%%/xcbglintegrations/libqxcb-glx-integration.so
%%QT_SBOMDIR%%/qtbase-%%FULLVER%%.spdx
@@ -3856,6 +4122,7 @@ libdata/pkgconfig/Qt6Platform.pc
libdata/pkgconfig/Qt6PrintSupport.pc
libdata/pkgconfig/Qt6Sql.pc
libdata/pkgconfig/Qt6Test.pc
+%%WAYLAND%%libdata/pkgconfig/Qt6WaylandClient.pc
libdata/pkgconfig/Qt6Widgets.pc
libdata/pkgconfig/Qt6Xml.pc
%%QT_TOOLDIR%%/cmake_automoc_parser
@@ -3870,6 +4137,7 @@ libdata/pkgconfig/Qt6Xml.pc
%%QT_TOOLDIR%%/qt-internal-configure-tests
%%QT_TOOLDIR%%/qt-testrunner.py
%%QT_TOOLDIR%%/qvkgen
+%%WAYLAND%%%%QT_TOOLDIR%%/qtwaylandscanner
%%QT_TOOLDIR%%/rcc
%%QT_TOOLDIR%%/sanitizer-testrunner.py
%%QT_TOOLDIR%%/syncqt
@@ -3915,9 +4183,12 @@ libdata/pkgconfig/Qt6Xml.pc
%%QT_DOCDIR%%/config/exampleurl-qtwinextras.qdocconf
%%QT_DOCDIR%%/config/exampleurl-qtx11extras.qdocconf
%%QT_DOCDIR%%/config/exampleurl-qtxmlpatterns.qdocconf
+%%QT_DOCDIR%%/global/app-examples-template/README.md
+%%QT_DOCDIR%%/global/app-examples-template/app-examples-template.qdoc
%%QT_DOCDIR%%/global/compat.qdocconf
%%QT_DOCDIR%%/global/config.qdocconf
%%QT_DOCDIR%%/global/cpp-doc-macros.qdocconf
+%%QT_DOCDIR%%/global/disabledwarnings.qdocconf
%%QT_DOCDIR%%/global/externalsites.qdocconf
%%QT_DOCDIR%%/global/externalsites/external-resources.qdoc
%%QT_DOCDIR%%/global/externalsites/qt-webpages.qdoc
@@ -3937,6 +4208,7 @@ libdata/pkgconfig/Qt6Xml.pc
%%QT_DOCDIR%%/global/includes/corelib/port-from-qregexp.qdocinc
%%QT_DOCDIR%%/global/includes/examples-run.qdocinc
%%QT_DOCDIR%%/global/includes/module-use.qdocinc
+%%QT_DOCDIR%%/global/includes/squish-tested-example.qdocinc
%%QT_DOCDIR%%/global/includes/standardpath/functiondocs.qdocinc
%%QT_DOCDIR%%/global/macros-online.qdocconf
%%QT_DOCDIR%%/global/macros.qdocconf
@@ -4036,6 +4308,111 @@ libdata/pkgconfig/Qt6Xml.pc
%%QT_DATADIR%%/modules/Sql.json
%%QT_DATADIR%%/modules/Test.json
%%QT_DATADIR%%/modules/TestInternalsPrivate.json
+%%WAYLAND%%%%QT_DATADIR%%/modules/WaylandClient.json
+%%WAYLAND%%%%QT_DATADIR%%/modules/WaylandGlobalPrivate.json
%%QT_DATADIR%%/modules/Widgets.json
+%%WAYLAND%%%%QT_DATADIR%%/modules/WlShellIntegrationPrivate.json
%%X11%%%%QT_DATADIR%%/modules/XcbQpaPrivate.json
%%QT_DATADIR%%/modules/Xml.json
+%%QT_DATADIR%%/wayland/extensions/README.md
+%%QT_DATADIR%%/wayland/extensions/REUSE.toml
+%%QT_DATADIR%%/wayland/extensions/brcm.xml
+%%QT_DATADIR%%/wayland/extensions/drm-egl-server-buffer.xml
+%%QT_DATADIR%%/wayland/extensions/hardware-integration.xml
+%%QT_DATADIR%%/wayland/extensions/libhybris-egl-server-buffer.xml
+%%QT_DATADIR%%/wayland/extensions/qt-dmabuf-server-buffer.xml
+%%QT_DATADIR%%/wayland/extensions/qt-text-input-method-unstable-v1.xml
+%%QT_DATADIR%%/wayland/extensions/qt-texture-sharing-unstable-v1.xml
+%%QT_DATADIR%%/wayland/extensions/qt-vulkan-server-buffer-unstable-v1.xml
+%%QT_DATADIR%%/wayland/extensions/qt-windowmanager.xml
+%%QT_DATADIR%%/wayland/extensions/server-buffer-extension.xml
+%%QT_DATADIR%%/wayland/extensions/shm-emulation-server-buffer.xml
+%%QT_DATADIR%%/wayland/protocols/MIT_LICENSE.txt
+%%QT_DATADIR%%/wayland/protocols/appmenu/LGPL-2.1-or-later.txt
+%%QT_DATADIR%%/wayland/protocols/appmenu/REUSE.toml
+%%QT_DATADIR%%/wayland/protocols/appmenu/appmenu.xml
+%%QT_DATADIR%%/wayland/protocols/appmenu/qt_attribution.json
+%%QT_DATADIR%%/wayland/protocols/color-management/REUSE.toml
+%%QT_DATADIR%%/wayland/protocols/color-management/qt_attribution.json
+%%QT_DATADIR%%/wayland/protocols/color-management/xx-color-management-v4.xml
+%%QT_DATADIR%%/wayland/protocols/cursor-shape/REUSE.toml
+%%QT_DATADIR%%/wayland/protocols/cursor-shape/cursor-shape-v1.xml
+%%QT_DATADIR%%/wayland/protocols/fractional-scale/REUSE.toml
+%%QT_DATADIR%%/wayland/protocols/fractional-scale/fractional-scale-v1.xml
+%%QT_DATADIR%%/wayland/protocols/fractional-scale/qt_attribution.json
+%%QT_DATADIR%%/wayland/protocols/fullscreen-shell/REUSE.toml
+%%QT_DATADIR%%/wayland/protocols/fullscreen-shell/fullscreen-shell-unstable-v1.xml
+%%QT_DATADIR%%/wayland/protocols/fullscreen-shell/qt_attribution.json
+%%QT_DATADIR%%/wayland/protocols/idle-inhibit/REUSE.toml
+%%QT_DATADIR%%/wayland/protocols/idle-inhibit/idle-inhibit-unstable-v1.xml
+%%QT_DATADIR%%/wayland/protocols/linux-dmabuf/REUSE.toml
+%%QT_DATADIR%%/wayland/protocols/linux-dmabuf/linux-dmabuf-unstable-v1.xml
+%%QT_DATADIR%%/wayland/protocols/linux-dmabuf/qt_attribution.json
+%%QT_DATADIR%%/wayland/protocols/pointer-gestures/REUSE.toml
+%%QT_DATADIR%%/wayland/protocols/pointer-gestures/pointer-gestures-unstable-v1.xml
+%%QT_DATADIR%%/wayland/protocols/pointer-gestures/qt_attribution.json
+%%QT_DATADIR%%/wayland/protocols/pointer-warp/REUSE.toml
+%%QT_DATADIR%%/wayland/protocols/pointer-warp/pointer-warp-v1.xml
+%%QT_DATADIR%%/wayland/protocols/pointer-warp/qt_attribution.json
+%%QT_DATADIR%%/wayland/protocols/presentation-time/REUSE.toml
+%%QT_DATADIR%%/wayland/protocols/presentation-time/presentation-time.xml
+%%QT_DATADIR%%/wayland/protocols/presentation-time/qt_attribution.json
+%%QT_DATADIR%%/wayland/protocols/scaler/REUSE.toml
+%%QT_DATADIR%%/wayland/protocols/scaler/qt_attribution.json
+%%QT_DATADIR%%/wayland/protocols/scaler/scaler.xml
+%%QT_DATADIR%%/wayland/protocols/tablet/REUSE.toml
+%%QT_DATADIR%%/wayland/protocols/tablet/qt_attribution.json
+%%QT_DATADIR%%/wayland/protocols/tablet/tablet-unstable-v2.xml
+%%QT_DATADIR%%/wayland/protocols/text-input/v1/REUSE.toml
+%%QT_DATADIR%%/wayland/protocols/text-input/v1/qt_attribution.json
+%%QT_DATADIR%%/wayland/protocols/text-input/v1/text-input-unstable-v1.xml
+%%QT_DATADIR%%/wayland/protocols/text-input/v2/HPND_LICENSE.txt
+%%QT_DATADIR%%/wayland/protocols/text-input/v2/REUSE.toml
+%%QT_DATADIR%%/wayland/protocols/text-input/v2/qt_attribution.json
+%%QT_DATADIR%%/wayland/protocols/text-input/v2/text-input-unstable-v2.xml
+%%QT_DATADIR%%/wayland/protocols/text-input/v3/REUSE.toml
+%%QT_DATADIR%%/wayland/protocols/text-input/v3/qt_attribution.json
+%%QT_DATADIR%%/wayland/protocols/text-input/v3/text-input-unstable-v3.xml
+%%QT_DATADIR%%/wayland/protocols/viewporter/REUSE.toml
+%%QT_DATADIR%%/wayland/protocols/viewporter/qt_attribution.json
+%%QT_DATADIR%%/wayland/protocols/viewporter/viewporter.xml
+%%QT_DATADIR%%/wayland/protocols/wayland/README
+%%QT_DATADIR%%/wayland/protocols/wayland/REUSE.toml
+%%QT_DATADIR%%/wayland/protocols/wayland/qt_attribution.json
+%%QT_DATADIR%%/wayland/protocols/wayland/wayland.xml
+%%QT_DATADIR%%/wayland/protocols/wl-eglstream/REUSE.toml
+%%QT_DATADIR%%/wayland/protocols/wl-eglstream/qt_attribution.json
+%%QT_DATADIR%%/wayland/protocols/wl-eglstream/wl-eglstream-controller.xml
+%%QT_DATADIR%%/wayland/protocols/wlr-data-control/REUSE.toml
+%%QT_DATADIR%%/wayland/protocols/wlr-data-control/qt_attribution.json
+%%QT_DATADIR%%/wayland/protocols/wlr-data-control/wlr-data-control-unstable-v1.xml
+%%QT_DATADIR%%/wayland/protocols/wp-primary-selection/REUSE.toml
+%%QT_DATADIR%%/wayland/protocols/wp-primary-selection/qt_attribution.json
+%%QT_DATADIR%%/wayland/protocols/wp-primary-selection/wp-primary-selection-unstable-v1.xml
+%%QT_DATADIR%%/wayland/protocols/xdg-activation/REUSE.toml
+%%QT_DATADIR%%/wayland/protocols/xdg-activation/qt_attribution.json
+%%QT_DATADIR%%/wayland/protocols/xdg-activation/xdg-activation-v1.xml
+%%QT_DATADIR%%/wayland/protocols/xdg-decoration/REUSE.toml
+%%QT_DATADIR%%/wayland/protocols/xdg-decoration/qt_attribution.json
+%%QT_DATADIR%%/wayland/protocols/xdg-decoration/xdg-decoration-unstable-v1.xml
+%%QT_DATADIR%%/wayland/protocols/xdg-dialog/REUSE.toml
+%%QT_DATADIR%%/wayland/protocols/xdg-dialog/qt_attribution.json
+%%QT_DATADIR%%/wayland/protocols/xdg-dialog/xdg-dialog-v1.xml
+%%QT_DATADIR%%/wayland/protocols/xdg-foreign/REUSE.toml
+%%QT_DATADIR%%/wayland/protocols/xdg-foreign/qt_attribution.json
+%%QT_DATADIR%%/wayland/protocols/xdg-foreign/xdg-foreign-unstable-v2.xml
+%%QT_DATADIR%%/wayland/protocols/xdg-output/REUSE.toml
+%%QT_DATADIR%%/wayland/protocols/xdg-output/qt_attribution.json
+%%QT_DATADIR%%/wayland/protocols/xdg-output/xdg-output-unstable-v1.xml
+%%QT_DATADIR%%/wayland/protocols/xdg-shell/REUSE.toml
+%%QT_DATADIR%%/wayland/protocols/xdg-shell/qt_attribution.json
+%%QT_DATADIR%%/wayland/protocols/xdg-shell/xdg-shell-unstable-v6.xml
+%%QT_DATADIR%%/wayland/protocols/xdg-shell/xdg-shell.xml
+%%QT_DATADIR%%/wayland/protocols/xdg-system-bell/REUSE.toml
+%%QT_DATADIR%%/wayland/protocols/xdg-system-bell/qt_attribution.json
+%%QT_DATADIR%%/wayland/protocols/xdg-system-bell/xdg-system-bell-v1.xml
+%%QT_DATADIR%%/wayland/protocols/xdg-toplevel-drag/REUSE.toml
+%%QT_DATADIR%%/wayland/protocols/xdg-toplevel-drag/xdg-toplevel-drag-v1.xml
+%%QT_DATADIR%%/wayland/protocols/xdg-toplevel-icon/REUSE.toml
+%%QT_DATADIR%%/wayland/protocols/xdg-toplevel-icon/qt_attribution.json
+%%QT_DATADIR%%/wayland/protocols/xdg-toplevel-icon/xdg-toplevel-icon-v1.xml