diff options
Diffstat (limited to 'meta/recipes-multimedia/gstreamer')
-rw-r--r-- | meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad/avoid-including-sys-poll.h-directly.patch | 30 | ||||
-rw-r--r-- | meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad_git.bb | 1 |
2 files changed, 31 insertions, 0 deletions
diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad/avoid-including-sys-poll.h-directly.patch b/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad/avoid-including-sys-poll.h-directly.patch new file mode 100644 index 0000000000..357fd78002 --- /dev/null +++ b/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad/avoid-including-sys-poll.h-directly.patch | |||
@@ -0,0 +1,30 @@ | |||
1 | From 72561a0fca562d03567ace7b4cfc94992cd6525c Mon Sep 17 00:00:00 2001 | ||
2 | From: Andre McCurdy <armccurdy@gmail.com> | ||
3 | Date: Wed, 3 Feb 2016 18:05:41 -0800 | ||
4 | Subject: [PATCH] avoid including <sys/poll.h> directly | ||
5 | |||
6 | musl libc generates warnings if <sys/poll.h> is included directly. | ||
7 | |||
8 | Upstream-Status: Pending | ||
9 | |||
10 | Signed-off-by: Andre McCurdy <armccurdy@gmail.com> | ||
11 | --- | ||
12 | sys/dvb/gstdvbsrc.c | 2 +- | ||
13 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
14 | |||
15 | diff --git a/sys/dvb/gstdvbsrc.c b/sys/dvb/gstdvbsrc.c | ||
16 | index b93255f..49f145a 100644 | ||
17 | --- a/sys/dvb/gstdvbsrc.c | ||
18 | +++ b/sys/dvb/gstdvbsrc.c | ||
19 | @@ -93,7 +93,7 @@ | ||
20 | #include <gst/gst.h> | ||
21 | #include <gst/glib-compat-private.h> | ||
22 | #include <sys/ioctl.h> | ||
23 | -#include <sys/poll.h> | ||
24 | +#include <poll.h> | ||
25 | #include <fcntl.h> | ||
26 | #include <errno.h> | ||
27 | #include <stdio.h> | ||
28 | -- | ||
29 | 1.9.1 | ||
30 | |||
diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad_git.bb b/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad_git.bb index 99690a3b81..0ebf62227e 100644 --- a/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad_git.bb +++ b/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad_git.bb | |||
@@ -12,6 +12,7 @@ SRC_URI = " \ | |||
12 | git://anongit.freedesktop.org/gstreamer/common;destsuffix=git/common;name=common \ | 12 | git://anongit.freedesktop.org/gstreamer/common;destsuffix=git/common;name=common \ |
13 | file://configure-allow-to-disable-libssh2.patch \ | 13 | file://configure-allow-to-disable-libssh2.patch \ |
14 | file://fix-maybe-uninitialized-warnings-when-compiling-with-Os.patch \ | 14 | file://fix-maybe-uninitialized-warnings-when-compiling-with-Os.patch \ |
15 | file://avoid-including-sys-poll.h-directly.patch \ | ||
15 | " | 16 | " |
16 | 17 | ||
17 | PV = "1.7.1+git${SRCPV}" | 18 | PV = "1.7.1+git${SRCPV}" |