diff options
| author | Yogita Urade <yogita.urade@windriver.com> | 2025-02-12 11:06:29 +0000 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2025-02-18 11:56:04 +0000 |
| commit | 4dbdf179ba4bf1902409dd37a1ec9729bb4d8fa9 (patch) | |
| tree | 2d139871ed24e8cac7fbb2ed0aa099e1a298d21d /meta/recipes-sato/webkit/webkitgtk | |
| parent | 76e071a79b8f0e2ce9010725297db4b01fd9ec62 (diff) | |
| download | poky-4dbdf179ba4bf1902409dd37a1ec9729bb4d8fa9.tar.gz | |
webkitgtk: upgrade 2.46.5 -> 2.46.6
Includes fix for CVE-2025-24143, CVE-2025-24150, CVE-2025-24158 and
CVE-2025-24162
Drop 0001-Support-ICU-76.1-build.patch fix is part of upgrade.
Changelog:
==========
- Fix a crash when enabling Skia CPU rendering.
- Fix several crashes and rendering issues.
(From OE-Core rev: 289e09c1a090d06146406886d4763dd22203c231)
Signed-off-by: Yogita Urade <yogita.urade@windriver.com>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-sato/webkit/webkitgtk')
| -rw-r--r-- | meta/recipes-sato/webkit/webkitgtk/0001-Support-ICU-76.1-build.patch | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/meta/recipes-sato/webkit/webkitgtk/0001-Support-ICU-76.1-build.patch b/meta/recipes-sato/webkit/webkitgtk/0001-Support-ICU-76.1-build.patch deleted file mode 100644 index 24f484e5e3..0000000000 --- a/meta/recipes-sato/webkit/webkitgtk/0001-Support-ICU-76.1-build.patch +++ /dev/null | |||
| @@ -1,36 +0,0 @@ | |||
| 1 | From 8b0ff0f2e2882f200f1c21ec76fa679444cb1c43 Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Jason Schonberg <schonm@gmail.com> | ||
| 3 | Date: Wed, 20 Nov 2024 11:05:52 -0500 | ||
| 4 | Subject: [PATCH] Support ICU 76.1 build | ||
| 5 | |||
| 6 | https://bugs.webkit.org/show_bug.cgi?id=282120 | ||
| 7 | |||
| 8 | Reviewed by Yusuke Suzuki. | ||
| 9 | |||
| 10 | In ICU 76.1 an additional macro `U_SHOW_CPLUSPLUS_HEADER_API` was added to | ||
| 11 | control visibility of the C++ API within ICU. Set this value to `0` since WebKit | ||
| 12 | wants to only use the C API. | ||
| 13 | |||
| 14 | * Source/WTF/wtf/Platform.h: | ||
| 15 | |||
| 16 | Canonical link: https://commits.webkit.org/285727@main | ||
| 17 | |||
| 18 | Upstream-Status: Backport [ from webkitgtk-2.47.1 https://github.com/WebKit/WebKit/commit/63f7badbada070ebaadd318b2801818ecf7e7ea0 ] | ||
| 19 | |||
| 20 | Signed-off-by: Jason Schonberg <schonm@gmail.com> | ||
| 21 | --- | ||
| 22 | Source/WTF/wtf/Platform.h | 1 + | ||
| 23 | 1 file changed, 1 insertion(+) | ||
| 24 | |||
| 25 | diff --git a/Source/WTF/wtf/Platform.h b/Source/WTF/wtf/Platform.h | ||
| 26 | index 23070df2..51a8dce9 100644 | ||
| 27 | --- a/Source/WTF/wtf/Platform.h | ||
| 28 | +++ b/Source/WTF/wtf/Platform.h | ||
| 29 | @@ -115,6 +115,7 @@ | ||
| 30 | /* ICU configuration. Some of these match ICU defaults on some platforms, but we would like them consistently set everywhere we build WebKit. */ | ||
| 31 | #define U_HIDE_DEPRECATED_API 1 | ||
| 32 | #define U_SHOW_CPLUSPLUS_API 0 | ||
| 33 | +#define U_SHOW_CPLUSPLUS_HEADER_API 0 | ||
| 34 | #ifdef __cplusplus | ||
| 35 | #define UCHAR_TYPE char16_t | ||
| 36 | #endif | ||
