summaryrefslogtreecommitdiffstats
path: root/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good/avoid-including-sys-poll.h-directly.patch
diff options
context:
space:
mode:
authorCarlos Rafael Giani <crg7475@mailbox.org>2019-05-26 13:06:34 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2019-05-28 10:47:02 +0100
commit2eddd87e63074341b81834e7a07e82265b462255 (patch)
tree6af65e566bdb2507f26b5575d0febcdcb2550220 /meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good/avoid-including-sys-poll.h-directly.patch
parentb2a8cc4b0583689a4c5d5374beb638f2a74e8bf0 (diff)
downloadpoky-2eddd87e63074341b81834e7a07e82265b462255.tar.gz
gstreamer1.0-plugins-good: upgrade to version 1.16.0
* 0001-scaletempo-Advertise-interleaved-layout-in-caps-temp.patch Added this patch that is on track for version 1.16.1 because it is needed for WebKit * 0001-gstrtpmp4gpay-set-dafault-value-for-MPEG4-without-co.patch Removed since it is not needed (using mpeg4videoparse fixes the issue) * avoid-including-sys-poll.h-directly.patch * ensure-valid-sentinel-for-gst_structure_get.patch Removed since these are included in 1.16.0 (From OE-Core rev: 2af6b5500f719eb4128e27e8346be9d9c3e1377e) Signed-off-by: Philippe Normand <philn@igalia.com> Signed-off-by: Carlos Rafael Giani <crg7475@mailbox.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good/avoid-including-sys-poll.h-directly.patch')
-rw-r--r--meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good/avoid-including-sys-poll.h-directly.patch44
1 files changed, 0 insertions, 44 deletions
diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good/avoid-including-sys-poll.h-directly.patch b/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good/avoid-including-sys-poll.h-directly.patch
deleted file mode 100644
index c7f3630eca..0000000000
--- a/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good/avoid-including-sys-poll.h-directly.patch
+++ /dev/null
@@ -1,44 +0,0 @@
1From 4bfe2c8570a4a7080ec662504882969054d8a072 Mon Sep 17 00:00:00 2001
2From: Andre McCurdy <armccurdy@gmail.com>
3Date: Wed, 3 Feb 2016 18:12:38 -0800
4Subject: [PATCH] avoid including <sys/poll.h> directly
5
6musl libc generates warnings if <sys/poll.h> is included directly.
7
8Upstream-Status: Pending
9
10Signed-off-by: Andre McCurdy <armccurdy@gmail.com>
11---
12 ext/raw1394/gstdv1394src.c | 2 +-
13 ext/raw1394/gsthdv1394src.c | 2 +-
14 2 files changed, 2 insertions(+), 2 deletions(-)
15
16diff --git a/ext/raw1394/gstdv1394src.c b/ext/raw1394/gstdv1394src.c
17index dbc7607..3c42b41 100644
18--- a/ext/raw1394/gstdv1394src.c
19+++ b/ext/raw1394/gstdv1394src.c
20@@ -37,7 +37,7 @@
21 #include "config.h"
22 #endif
23 #include <unistd.h>
24-#include <sys/poll.h>
25+#include <poll.h>
26 #include <sys/socket.h>
27 #include <errno.h>
28 #include <fcntl.h>
29diff --git a/ext/raw1394/gsthdv1394src.c b/ext/raw1394/gsthdv1394src.c
30index 0b07a37..9785a15 100644
31--- a/ext/raw1394/gsthdv1394src.c
32+++ b/ext/raw1394/gsthdv1394src.c
33@@ -36,7 +36,7 @@
34 #include "config.h"
35 #endif
36 #include <unistd.h>
37-#include <sys/poll.h>
38+#include <poll.h>
39 #include <sys/socket.h>
40 #include <errno.h>
41 #include <fcntl.h>
42--
431.9.1
44