mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-09-27 16:01:45 +00:00
Includes fixes for CVE-2025-13502, CVE-2025-13947, CVE-2025-43421, CVE-2025-43458 and CVE-2025-66287. Drop libsoup2 support. Even though this particular version still supports it, this is the last major version that is not libsoup3-only. Starting with version 2.52 (which is only 3-4 weeks away at the time of writing this message) upstream is dropping libsoup2 support completely[1]. This is a proactive removal of this feature, the sooner users start the migration, the better. Made opengl a mandatory DISTRO_FEATURE: libepoxy requires it, which is both a direct dependency, and an indirect one from gtk+3. Changelogs: https://webkitgtk.org/2026/02/09/webkitgtk2.50.5-released.html https://webkitgtk.org/2025/12/16/webkitgtk2.50.4-released.html https://webkitgtk.org/2025/12/04/webkitgtk2.50.3-released.html https://webkitgtk.org/2025/11/19/webkitgtk2.50.2-released.html https://webkitgtk.org/2025/10/10/webkitgtk2.50.1-released.html https://webkitgtk.org/2025/09/17/webkitgtk2.50.0-released.html [1]: https://webkitgtk.org/2025/10/07/webkitgtk-soup2-deprecation.html Signed-off-by: Gyorgy Sarvari <skandigraun@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
35 lines
1.6 KiB
Diff
35 lines
1.6 KiB
Diff
From 4602261fa44d6bbb4c3698c79e08a6a40a6edc5a Mon Sep 17 00:00:00 2001
|
|
From: Khem Raj <raj.khem@gmail.com>
|
|
Date: Fri, 12 Jan 2024 09:21:39 -0800
|
|
Subject: [PATCH] clang/arm: Do not use MUST_TAIL_CALL
|
|
|
|
This causes clang-17 to crash see [1]
|
|
this code is new in webkit 2.42[2] thats why we do not see the crash in older webkit
|
|
|
|
[1] https://github.com/llvm/llvm-project/issues/67767
|
|
[2] https://github.com/WebKit/WebKit/commit/4d816460b765acd8aef90ab474615850b91ecc35
|
|
|
|
Upstream-Status: Inappropriate [work around to avoid clang compiler crash]
|
|
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
|
|
|
Update context for webkitgtk 2.48.0.
|
|
|
|
Signed-off-by: Kai Kang <kai.kang@windriver.com>
|
|
---
|
|
Source/WTF/wtf/Compiler.h | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/Source/WTF/wtf/Compiler.h b/Source/WTF/wtf/Compiler.h
|
|
index 16e416d..68dd9a0 100644
|
|
--- a/Source/WTF/wtf/Compiler.h
|
|
+++ b/Source/WTF/wtf/Compiler.h
|
|
@@ -290,7 +290,7 @@
|
|
// written for 64-bit may fail to tail call on 32-bit.
|
|
// It also doesn't work on ppc64le: https://github.com/llvm/llvm-project/issues/98859
|
|
// and on Windows: https://github.com/llvm/llvm-project/issues/116568
|
|
-#if !defined(MUST_TAIL_CALL) && COMPILER(CLANG) && __SIZEOF_POINTER__ == 8 && defined(__cplusplus) && COMPILER_HAS_CPP_ATTRIBUTE(clang::musttail) && !defined(__powerpc__) && !defined(_WIN32)
|
|
+#if !defined(MUST_TAIL_CALL) && COMPILER(CLANG) && __SIZEOF_POINTER__ == 8 && defined(__cplusplus) && COMPILER_HAS_CPP_ATTRIBUTE(clang::musttail) && !defined(__powerpc__) && !defined(_WIN32) && !defined(__arm__)
|
|
#define MUST_TAIL_CALL [[clang::musttail]]
|
|
#define HAVE_MUST_TAIL_CALL 1
|
|
#endif
|