summaryrefslogtreecommitdiffstats
path: root/meta/recipes-sato/webkit/webkitgtk
diff options
context:
space:
mode:
authorKai Kang <kai.kang@windriver.com>2024-04-11 15:03:36 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2024-04-23 13:40:24 +0100
commit0d6a71d49217eb2f036374eef2285a9046b69dc4 (patch)
tree964ae7159123af51e38946d9357f148dbcfbb3a7 /meta/recipes-sato/webkit/webkitgtk
parent4bf61f66cec6e89ad86aa54cb4f67e8afc865016 (diff)
downloadpoky-0d6a71d49217eb2f036374eef2285a9046b69dc4.tar.gz
webkitgtk: 2.44.0 -> 2.44.1
Update webkitgtk from 2.44.0 to the first bug fix release in the stable 2.44 series 2.44.1. * remove backported patch What's new in the WebKitGTK 2.44.1 release? =========================================== - Fix handling of lifetime of web view child dialogs in GTK4. - Do not schedule layer flushes when drawing area size is empty. - Fix videos with alpha when using the DMA-BUF sink. - Fix the build with USE_GBM=OFF. - Fix the build in 32bit platforms - Fix several crashes and rendering issues. (From OE-Core rev: c129c47cf9fa119005ea6e3946ebdee0da1db7e0) Signed-off-by: Kai Kang <kai.kang@windriver.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@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/2922af379dc70b4b1a63b01d67179eb431f03ac4.patch38
1 files changed, 0 insertions, 38 deletions
diff --git a/meta/recipes-sato/webkit/webkitgtk/2922af379dc70b4b1a63b01d67179eb431f03ac4.patch b/meta/recipes-sato/webkit/webkitgtk/2922af379dc70b4b1a63b01d67179eb431f03ac4.patch
deleted file mode 100644
index 3067500447..0000000000
--- a/meta/recipes-sato/webkit/webkitgtk/2922af379dc70b4b1a63b01d67179eb431f03ac4.patch
+++ /dev/null
@@ -1,38 +0,0 @@
1From 2922af379dc70b4b1a63b01d67179eb431f03ac4 Mon Sep 17 00:00:00 2001
2From: Michael Catanzaro <mcatanzaro@redhat.com>
3Date: Mon, 18 Mar 2024 11:14:54 -0700
4Subject: [PATCH] REGRESSION(274077@main): failure to build on i586 (and likely
5 other 32bit arches): static assertion failed: Timer should stay small
6 https://bugs.webkit.org/show_bug.cgi?id=271108
7
8Unreviewed build fix. This changes SameSizeOfTimer to ensure it matches
9the size of Timer on 32-bit platforms.
10
11* Source/WebCore/platform/Timer.cpp:
12
13Canonical link: https://commits.webkit.org/276282@main
14
15Upstream-Status: Backport [https://github.com/WebKit/WebKit/commit/2922af379dc70b4b1a63b01d67179eb431f03ac4]
16
17Signed-off-by: Markus Volk <f_l_k@t-online.de>
18---
19 Source/WebCore/platform/Timer.cpp | 6 +++++-
20 1 file changed, 5 insertions(+), 1 deletion(-)
21
22diff --git a/Source/WebCore/platform/Timer.cpp b/Source/WebCore/platform/Timer.cpp
23index 4f7c0f5c39ca9..0f3734cca2474 100644
24--- a/Source/WebCore/platform/Timer.cpp
25+++ b/Source/WebCore/platform/Timer.cpp
26@@ -263,7 +263,11 @@ struct SameSizeAsTimer {
27
28 WeakPtr<TimerAlignment> timerAlignment;
29 double times[2];
30- void* pointers[3];
31+ void* pointers[2];
32+#if CPU(ADDRESS32)
33+ uint8_t bitfields;
34+#endif
35+ void* pointer;
36 };
37
38 static_assert(sizeof(Timer) == sizeof(SameSizeAsTimer), "Timer should stay small");