diff options
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-sato/webkit/webkitgtk/0001-gstreamer-add-a-missing-format-string.patch | 24 | ||||
-rw-r--r-- | meta/recipes-sato/webkit/webkitgtk_2.24.2.bb (renamed from meta/recipes-sato/webkit/webkitgtk_2.24.0.bb) | 9 |
2 files changed, 27 insertions, 6 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 @@ | |||
1 | From 2d9687840b97186b80053dd262209e39455ac876 Mon Sep 17 00:00:00 2001 | ||
2 | From: Alexander Kanavin <alex.kanavin@gmail.com> | ||
3 | Date: Wed, 8 May 2019 15:31:23 +0200 | ||
4 | Subject: [PATCH] gstreamer: add a missing format string | ||
5 | |||
6 | Upstream-Status: Pending | ||
7 | Signed-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 | |||
12 | diff --git a/Source/WebCore/platform/graphics/gstreamer/WebKitWebSourceGStreamer.cpp b/Source/WebCore/platform/graphics/gstreamer/WebKitWebSourceGStreamer.cpp | ||
13 | index 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: | ||
diff --git a/meta/recipes-sato/webkit/webkitgtk_2.24.0.bb b/meta/recipes-sato/webkit/webkitgtk_2.24.2.bb index 96ac5ac18f..056334fff5 100644 --- a/meta/recipes-sato/webkit/webkitgtk_2.24.0.bb +++ b/meta/recipes-sato/webkit/webkitgtk_2.24.2.bb | |||
@@ -23,10 +23,11 @@ SRC_URI = "http://www.webkitgtk.org/releases/${BPN}-${PV}.tar.xz \ | |||
23 | file://include_array.patch \ | 23 | file://include_array.patch \ |
24 | file://narrowing.patch \ | 24 | file://narrowing.patch \ |
25 | file://snprintf.patch \ | 25 | file://snprintf.patch \ |
26 | file://0001-gstreamer-add-a-missing-format-string.patch \ | ||
26 | " | 27 | " |
27 | 28 | ||
28 | SRC_URI[md5sum] = "576d69c598b3e36c73441052d02466de" | 29 | SRC_URI[md5sum] = "83012998e1b9f71abb37d8baf6f9c7e6" |
29 | SRC_URI[sha256sum] = "2e4ad1503fe482ceb5a83cf70ac9cd42f37eb718555a4d6844fe4c59a9214407" | 30 | SRC_URI[sha256sum] = "019cb1f0d05bf6148b72c7a85734bcd006388a1c14132843ef9a1b2cb7b4321c" |
30 | 31 | ||
31 | inherit cmake pkgconfig gobject-introspection perlnative distro_features_check upstream-version-is-even gtk-doc | 32 | inherit cmake pkgconfig gobject-introspection perlnative distro_features_check upstream-version-is-even gtk-doc |
32 | 33 | ||
@@ -71,10 +72,6 @@ EXTRA_OECMAKE = " \ | |||
71 | -DPYTHON_EXECUTABLE=`which python` \ | 72 | -DPYTHON_EXECUTABLE=`which python` \ |
72 | " | 73 | " |
73 | 74 | ||
74 | # GL/GLES header clash: both define the same thing, differently, on 32 bit x86 | ||
75 | EXTRA_OECMAKE_append_x86 = " -DUSE_GSTREAMER_GL=OFF " | ||
76 | EXTRA_OECMAKE_append_x86-x32 = " -DUSE_GSTREAMER_GL=OFF " | ||
77 | |||
78 | # Javascript JIT is not supported on ARC | 75 | # Javascript JIT is not supported on ARC |
79 | EXTRA_OECMAKE_append_arc = " -DENABLE_JIT=OFF " | 76 | EXTRA_OECMAKE_append_arc = " -DENABLE_JIT=OFF " |
80 | # By default 25-bit "medium" calls are used on ARC | 77 | # By default 25-bit "medium" calls are used on ARC |