summaryrefslogtreecommitdiffstats
path: root/meta/recipes-sato/webkit/webkitgtk
diff options
context:
space:
mode:
authorAlexander Kanavin <alex.kanavin@gmail.com>2019-05-20 16:11:23 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2019-05-22 07:24:52 +0100
commit5dffb4261296e2f02b2bbdaeeed1b0057421ed4c (patch)
treeb66d6d718737c862fe163c7938a6727a16a00076 /meta/recipes-sato/webkit/webkitgtk
parent71290d7131926b0e8f15126acdf7c5b15e6b4d75 (diff)
downloadpoky-5dffb4261296e2f02b2bbdaeeed1b0057421ed4c.tar.gz
webkitgtk: update to 2.24.2
Add a patch to address a missing format string error. Drop the x86-specifc setting for GSTREAMER_GL as it is no longer needed. (From OE-Core rev: e920e58af56d1d1279d396bfb4e8baf38605b6d1) 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')
-rw-r--r--meta/recipes-sato/webkit/webkitgtk/0001-gstreamer-add-a-missing-format-string.patch24
1 files changed, 24 insertions, 0 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
new file mode 100644
index 0000000000..bd4ac1e353
--- /dev/null
+++ b/meta/recipes-sato/webkit/webkitgtk/0001-gstreamer-add-a-missing-format-string.patch
@@ -0,0 +1,24 @@
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: