summaryrefslogtreecommitdiffstats
path: root/meta/recipes-sato/webkit/webkitgtk/x32_support.patch
diff options
context:
space:
mode:
authorAlexander Kanavin <alex.kanavin@gmail.com>2020-04-30 11:58:09 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2020-05-22 16:23:24 +0100
commit52623b59c06bd9c15234d8c9a1e0bddac7197fd7 (patch)
tree489be9a6488fe9b9a80f7b11ae7a8cba95c57316 /meta/recipes-sato/webkit/webkitgtk/x32_support.patch
parent0f1efa7db09506832743aae48a329d16a8ff42e5 (diff)
downloadpoky-52623b59c06bd9c15234d8c9a1e0bddac7197fd7.tar.gz
webkitgtk: update to 2.28.2 to fix multiple CVE's
This latest stable release fixes: CVE-2020-10018, CVE-2020-11793, CVE-2020-3885, CVE-2020-3894, CVE-2020-3895, CVE-2020-3897, CVE-2020-3899, CVE-2020-3900, CVE-2020-3901, CVE-2020-3902 (From OE-Core rev: ea75624d2b36fc4c5fbbbb0b2f06ce8a5cadd214) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-sato/webkit/webkitgtk/x32_support.patch')
-rw-r--r--meta/recipes-sato/webkit/webkitgtk/x32_support.patch30
1 files changed, 0 insertions, 30 deletions
diff --git a/meta/recipes-sato/webkit/webkitgtk/x32_support.patch b/meta/recipes-sato/webkit/webkitgtk/x32_support.patch
deleted file mode 100644
index 85d281e7f4..0000000000
--- a/meta/recipes-sato/webkit/webkitgtk/x32_support.patch
+++ /dev/null
@@ -1,30 +0,0 @@
1Signed-off-by: Christopher Larson <chris_larson@mentor.com>
2Upstream-Status: Pending
3
4From 897563a0397266d8ceb058f172e16b06419b2593 Mon Sep 17 00:00:00 2001
5From: Daniel Schepler <dschepler@gmail.com>
6Date: Mon, 26 Mar 2018 17:48:34 +0300
7Subject: [PATCH] Fix FTBFS in x32
8
9===================================================================
10
11---
12 Source/WTF/wtf/Platform.h | 4 ++++
13 1 file changed, 4 insertions(+)
14
15diff --git a/Source/WTF/wtf/Platform.h b/Source/WTF/wtf/Platform.h
16index 850e298..551c047 100644
17--- a/Source/WTF/wtf/Platform.h
18+++ b/Source/WTF/wtf/Platform.h
19@@ -132,7 +132,11 @@
20 /* CPU(X86_64) - AMD64 / Intel64 / x86_64 64-bit */
21 #if defined(__x86_64__) \
22 || defined(_M_X64)
23+#ifdef __ILP32__
24+#define WTF_CPU_X86_64_32 1
25+#else
26 #define WTF_CPU_X86_64 1
27+#endif
28 #define WTF_CPU_X86_SSE2 1
29 #define WTF_CPU_KNOWN 1
30 #endif