summaryrefslogtreecommitdiffstats
path: root/meta/recipes-sato/webkit/webkitgtk/0001-gstreamer-add-a-missing-format-string.patch
diff options
context:
space:
mode:
authorAlexander Kanavin <alex.kanavin@gmail.com>2019-10-11 13:47:44 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2019-10-15 14:16:10 +0100
commitf2629e86566c69850dad1e8633019e42045c34bf (patch)
tree8512d7177985784789e2454da84ab8e0bbc30246 /meta/recipes-sato/webkit/webkitgtk/0001-gstreamer-add-a-missing-format-string.patch
parent9c9e65740304d4b1d1d73a11ef276f4c2efae7ee (diff)
downloadpoky-f2629e86566c69850dad1e8633019e42045c34bf.tar.gz
webkitgtk: update 2.24.4 -> 2.26.1
Drop patches: - 0001-WebKitMacros-Append-to-I-and-not-to-isystem.patch - this has been a pain to rebase for a while as upstream keeps shifting and changing the code that needs to be modified. If the issue the patch is addressing is still relevant, please work with upstream to fix it at the source - 0001-gstreamer-add-a-missing-format-string.patch, narrowing.patch are integrated upstream - detect-gstreamer-gl.patch is adjusting something that is better done from the yocto package configuration Add an option to disable an enabled-by-default sandbox that requires a component that oe-core does not have. (From OE-Core rev: d9e3ff36af9e06c1bc94c7a4c37ae87afceea5ca) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-sato/webkit/webkitgtk/0001-gstreamer-add-a-missing-format-string.patch')
-rw-r--r--meta/recipes-sato/webkit/webkitgtk/0001-gstreamer-add-a-missing-format-string.patch24
1 files changed, 0 insertions, 24 deletions
diff --git a/meta/recipes-sato/webkit/webkitgtk/0001-gstreamer-add-a-missing-format-string.patch b/meta/recipes-sato/webkit/webkitgtk/0001-gstreamer-add-a-missing-format-string.patch
deleted file mode 100644
index bd4ac1e353..0000000000
--- a/meta/recipes-sato/webkit/webkitgtk/0001-gstreamer-add-a-missing-format-string.patch
+++ /dev/null
@@ -1,24 +0,0 @@
1From 2d9687840b97186b80053dd262209e39455ac876 Mon Sep 17 00:00:00 2001
2From: Alexander Kanavin <alex.kanavin@gmail.com>
3Date: Wed, 8 May 2019 15:31:23 +0200
4Subject: [PATCH] gstreamer: add a missing format string
5
6Upstream-Status: Pending
7Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
8---
9 .../platform/graphics/gstreamer/WebKitWebSourceGStreamer.cpp | 2 +-
10 1 file changed, 1 insertion(+), 1 deletion(-)
11
12diff --git a/Source/WebCore/platform/graphics/gstreamer/WebKitWebSourceGStreamer.cpp b/Source/WebCore/platform/graphics/gstreamer/WebKitWebSourceGStreamer.cpp
13index e1e497ee..483fd65c 100644
14--- a/Source/WebCore/platform/graphics/gstreamer/WebKitWebSourceGStreamer.cpp
15+++ b/Source/WebCore/platform/graphics/gstreamer/WebKitWebSourceGStreamer.cpp
16@@ -738,7 +738,7 @@ static GstStateChangeReturn webKitWebSrcChangeState(GstElement* element, GstStat
17 WebKitWebSrc* src = WEBKIT_WEB_SRC(element);
18
19 #if GST_CHECK_VERSION(1, 14, 0)
20- GST_DEBUG_OBJECT(src, gst_state_change_get_name(transition));
21+ GST_DEBUG_OBJECT(src, "%s", gst_state_change_get_name(transition));
22 #endif
23 switch (transition) {
24 case GST_STATE_CHANGE_READY_TO_NULL: