summaryrefslogtreecommitdiffstats
path: root/meta/recipes-sato/webkit/webkitgtk/93920b55f52ff8b883296f4845269e2ed746acb3.patch
diff options
context:
space:
mode:
authorAlexander Kanavin <alex.kanavin@gmail.com>2023-06-28 17:00:41 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2023-06-28 23:02:50 +0100
commit1058ac940dea292b0f537f932c005536bae50c7b (patch)
tree8b996b41946c4d97b7a2d015286c0d7f5dbe85bd /meta/recipes-sato/webkit/webkitgtk/93920b55f52ff8b883296f4845269e2ed746acb3.patch
parent55121142c700e44f5f79cfd3b6fe515559762aff (diff)
downloadpoky-1058ac940dea292b0f537f932c005536bae50c7b.tar.gz
webkitgtk: update 2.38.5 -> 2.40.2
Drop backports. Add extra options that require additional dependencies, and fail without them. Disable the recipe on ancient x86 without SSE support; SSE is now required. (From OE-Core rev: fdc50a50d8f2c4975584c04db0c5e0e83cf62f99) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-sato/webkit/webkitgtk/93920b55f52ff8b883296f4845269e2ed746acb3.patch')
-rw-r--r--meta/recipes-sato/webkit/webkitgtk/93920b55f52ff8b883296f4845269e2ed746acb3.patch37
1 files changed, 0 insertions, 37 deletions
diff --git a/meta/recipes-sato/webkit/webkitgtk/93920b55f52ff8b883296f4845269e2ed746acb3.patch b/meta/recipes-sato/webkit/webkitgtk/93920b55f52ff8b883296f4845269e2ed746acb3.patch
deleted file mode 100644
index 762de40995..0000000000
--- a/meta/recipes-sato/webkit/webkitgtk/93920b55f52ff8b883296f4845269e2ed746acb3.patch
+++ /dev/null
@@ -1,37 +0,0 @@
1From 93920b55f52ff8b883296f4845269e2ed746acb3 Mon Sep 17 00:00:00 2001
2From: Michael Catanzaro <mcatanzaro@redhat.com>
3Date: Fri, 31 Mar 2023 12:24:09 -0700
4Subject: [PATCH] Fix build of SourceBrush.cpp
5 https://bugs.webkit.org/show_bug.cgi?id=254821
6
7Unreviewed build fix.
8
9* Source/WebCore/platform/graphics/SourceBrush.cpp:
10(WebCore::SourceBrush::setGradient):
11(WebCore::SourceBrush::setPattern):
12
13Canonical link: https://commits.webkit.org/262434@main
14
15Upstream-Status: Backport [https://github.com/WebKit/WebKit/commit/93920b55f52ff8b883296f4845269e2ed746acb3]
16Signed-off-by: Khem Raj <raj.khem@gmail.com>
17---
18 Source/WebCore/platform/graphics/SourceBrush.cpp | 4 ++--
19 1 file changed, 2 insertions(+), 2 deletions(-)
20
21--- a/Source/WebCore/platform/graphics/SourceBrush.cpp
22+++ b/Source/WebCore/platform/graphics/SourceBrush.cpp
23@@ -65,12 +65,12 @@ Pattern* SourceBrush::pattern() const
24
25 void SourceBrush::setGradient(Ref<Gradient>&& gradient, const AffineTransform& spaceTransform)
26 {
27- m_brush = { Brush::LogicalGradient { WTFMove(gradient), spaceTransform } };
28+ m_brush = Brush { Brush::LogicalGradient { { WTFMove(gradient) }, spaceTransform } };
29 }
30
31 void SourceBrush::setPattern(Ref<Pattern>&& pattern)
32 {
33- m_brush = { WTFMove(pattern) };
34+ m_brush = Brush { WTFMove(pattern) };
35 }
36
37 WTF::TextStream& operator<<(TextStream& ts, const SourceBrush& brush)