summaryrefslogtreecommitdiffstats
path: root/meta/recipes-sato/webkit/webkitgtk
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2018-05-20 15:03:15 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2018-05-29 21:07:15 +0100
commit09dc5c8273b4de9b2fa05af0cde83705b92df7f7 (patch)
tree88130e4dbb50e3654b8ebc4bdc569a94c572dfe6 /meta/recipes-sato/webkit/webkitgtk
parentf7137f94905c0d0ef1c0af8e53db18de00a17fec (diff)
downloadpoky-09dc5c8273b4de9b2fa05af0cde83705b92df7f7.tar.gz
webkitgtk: Upgrade to 2.20.2
Backport a patch to fix build clang 6.0+ driver can correclty detect corss gold linker now (From OE-Core rev: 10cb11fe911473a3a2f4cb67815ff86141c0ab3c) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Ross Burton <ross.burton@intel.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/0012-soup-Forward-declare-URL-class.patch31
1 files changed, 31 insertions, 0 deletions
diff --git a/meta/recipes-sato/webkit/webkitgtk/0012-soup-Forward-declare-URL-class.patch b/meta/recipes-sato/webkit/webkitgtk/0012-soup-Forward-declare-URL-class.patch
new file mode 100644
index 0000000000..78fd4dc79b
--- /dev/null
+++ b/meta/recipes-sato/webkit/webkitgtk/0012-soup-Forward-declare-URL-class.patch
@@ -0,0 +1,31 @@
1From 59f6903ad96f3213f248b672d5fd526cc0d666ce Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Sun, 20 May 2018 14:28:27 -0700
4Subject: [PATCH] soup: Forward declare URL class
5
6This helps getting away with compiler errors seen with clang
7
8/mnt/a/oe/workspace/sources/webkitgtk/Source/WebCore/platform/network/soup/SoupNetworkSession.h:68:62:
9error: unknown type name 'URL'
10 static std::optional<ResourceError> checkTLSErrors(const URL&,
11GTlsCertificate*, GTlsCertificateFlags);
12 ^
13Upstream-Status: Backport [https://trac.webkit.org/changeset/231876/webkit]
14
15Signed-off-by: Khem Raj <raj.khem@gmail.com>
16---
17 Source/WebCore/platform/network/soup/SoupNetworkSession.h | 1 +
18 1 file changed, 1 insertion(+)
19
20diff --git a/Source/WebCore/platform/network/soup/SoupNetworkSession.h b/Source/WebCore/platform/network/soup/SoupNetworkSession.h
21index 03bd72ba..7ca8792d 100644
22--- a/Source/WebCore/platform/network/soup/SoupNetworkSession.h
23+++ b/Source/WebCore/platform/network/soup/SoupNetworkSession.h
24@@ -43,6 +43,7 @@ namespace WebCore {
25
26 class CertificateInfo;
27 class ResourceError;
28+class URL;
29 struct SoupNetworkProxySettings;
30
31 class SoupNetworkSession {