Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package qt6-webengine for openSUSE:Factory checked in at 2026-02-24 15:37:56 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/qt6-webengine (Old) and /work/SRC/openSUSE:Factory/.qt6-webengine.new.1977 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "qt6-webengine" Tue Feb 24 15:37:56 2026 rev:54 rq:1334472 version:6.10.2 Changes: -------- --- /work/SRC/openSUSE:Factory/qt6-webengine/qt6-webengine.changes 2026-02-03 21:28:38.893451422 +0100 +++ /work/SRC/openSUSE:Factory/.qt6-webengine.new.1977/qt6-webengine.changes 2026-02-24 15:38:15.437563996 +0100 @@ -1,0 +2,6 @@ +Mon Feb 23 11:01:52 UTC 2026 - Christophe Marin <[email protected]> + +- Add upstream change (boo#1258695): + * 0001-sandbox-Fix-build-with-glibc-2.43-and-above.patch + +------------------------------------------------------------------- New: ---- 0001-sandbox-Fix-build-with-glibc-2.43-and-above.patch ----------(New B)---------- New:- Add upstream change (boo#1258695): * 0001-sandbox-Fix-build-with-glibc-2.43-and-above.patch ----------(New E)---------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ qt6-webengine.spec ++++++ --- /var/tmp/diff_new_pack.RbREx0/_old 2026-02-24 15:38:18.425688036 +0100 +++ /var/tmp/diff_new_pack.RbREx0/_new 2026-02-24 15:38:18.425688036 +0100 @@ -62,6 +62,7 @@ Source0: https://download.qt.io/official_releases/qt/%{short_version}/%{real_version}%{tar_suffix}/submodules/%{tar_name}-%{real_version}%{tar_suffix}.tar.xz Source99: qt6-webengine-rpmlintrc # Patches 0-100 are upstream patches # +Patch0: 0001-sandbox-Fix-build-with-glibc-2.43-and-above.patch # Patches 100-200 are openSUSE and/or non-upstream(able) patches # Patch100: rtc-dont-use-h264.patch Patch101: QtWebEngine_6.8_skip_xnnpack.patch ++++++ 0001-sandbox-Fix-build-with-glibc-2.43-and-above.patch ++++++ >From bf8bd5512920b28468d99b9ce550f0617e57d7f4 Mon Sep 17 00:00:00 2001 From: Peter Varga <[email protected]> Date: Mon, 16 Feb 2026 16:12:58 +0100 Subject: [PATCH] [sandbox] Fix build with glibc-2.43 and above MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes error: //sandbox/linux/system_headers/linux_seccomp.h:218:39: error: expected identifier before numeric constant 218 | #define SYS_SECCOMP 1 | ^ error: expected ‘}’ before numeric constant See https://crbug.com/456218403 Pick-to: 134-based 130-based 122-based Change-Id: I5f2ea6826650b9eff6b4defff694f24e301f7663 Reviewed-on: https://codereview.qt-project.org/c/qt/qtwebengine-chromium/+/713181 Reviewed-by: Moss Heim <[email protected]> --- src/3rdparty/chromium/sandbox/linux/system_headers/linux_seccomp.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/3rdparty/chromium/sandbox/linux/system_headers/linux_seccomp.h b/src/3rdparty/chromium/sandbox/linux/system_headers/linux_seccomp.h index 8690a96eb01..8988836508c 100644 --- a/src/3rdparty/chromium/sandbox/linux/system_headers/linux_seccomp.h +++ b/src/3rdparty/chromium/sandbox/linux/system_headers/linux_seccomp.h @@ -6,6 +6,7 @@ #define SANDBOX_LINUX_SYSTEM_HEADERS_LINUX_SECCOMP_H_ #include <stdint.h> +#include <signal.h> #include <sys/ioctl.h> #include "build/build_config.h" -- 2.53.0
