summaryrefslogtreecommitdiffstats
path: root/meta/recipes-multimedia/gstreamer/gstreamer1.0
diff options
context:
space:
mode:
authorNicolas Dechesne <nicolas.dechesne@linaro.org>2017-09-21 11:21:22 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-11-05 22:33:20 +0000
commit51894c6e1200ae9227bf1add12d3a9138a941911 (patch)
treec4b08885bf8744f920116d9a73786548db886c16 /meta/recipes-multimedia/gstreamer/gstreamer1.0
parent10dfdacd1da41423a5293293949b2eb76a792760 (diff)
downloadpoky-51894c6e1200ae9227bf1add12d3a9138a941911.tar.gz
gstreamer1.0: upgrade to version 1.12.3
Bugfixes release only. Removed local patch which was merged upstream. (From OE-Core rev: d0b9daa2cdf1dbb9bb14b111c3adfe55cd6ab67d) Signed-off-by: Nicolas Dechesne <nicolas.dechesne@linaro.org> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-multimedia/gstreamer/gstreamer1.0')
-rw-r--r--meta/recipes-multimedia/gstreamer/gstreamer1.0/0001-configure-Add-switches-for-enabling-disabling-libdw-.patch70
1 files changed, 0 insertions, 70 deletions
diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0/0001-configure-Add-switches-for-enabling-disabling-libdw-.patch b/meta/recipes-multimedia/gstreamer/gstreamer1.0/0001-configure-Add-switches-for-enabling-disabling-libdw-.patch
deleted file mode 100644
index 1132fd5a48..0000000000
--- a/meta/recipes-multimedia/gstreamer/gstreamer1.0/0001-configure-Add-switches-for-enabling-disabling-libdw-.patch
+++ /dev/null
@@ -1,70 +0,0 @@
1From a0cb41ba72913eda06049d266ec43ea8f52b5bee Mon Sep 17 00:00:00 2001
2From: Carlos Rafael Giani <dv@pseudoterminal.org>
3Date: Fri, 11 Aug 2017 21:21:36 +0200
4Subject: [PATCH] configure: Add switches for enabling/disabling libdw and
5 libunwind
6
7[Original patch modified to be applicable to 1.12.2]
8
9Upstream-Status: Submitted [https://bugzilla.gnome.org/show_bug.cgi?id=778193]
10
11Signed-off-by: Carlos Rafael Giani <dv@pseudoterminal.org>
12---
13 configure.ac | 38 ++++++++++++++++++++++++++++++++------
14 1 file changed, 32 insertions(+), 6 deletions(-)
15
16diff --git a/configure.ac b/configure.ac
17index b6b2923..32dd827 100644
18--- a/configure.ac
19+++ b/configure.ac
20@@ -821,15 +821,41 @@ fi
21 AM_CONDITIONAL(HAVE_GTK, test "x$HAVE_GTK" = "xyes")
22
23 dnl libunwind is optionally used by the leaks tracer
24-PKG_CHECK_MODULES(UNWIND, libunwind, HAVE_UNWIND=yes, HAVE_UNWIND=no)
25-if test "x$HAVE_UNWIND" = "xyes"; then
26- AC_DEFINE(HAVE_UNWIND, 1, [libunwind available])
27+AC_ARG_WITH([unwind],[AS_HELP_STRING([--with-unwind=yes|no|auto],[use libunwind])],
28+ [], [with_unwind=auto])
29+if [ test "x${with_unwind}" != "xno" ]; then
30+ PKG_CHECK_MODULES(UNWIND, [libunwind],
31+ [
32+ HAVE_UNWIND=yes
33+ AC_DEFINE(HAVE_UNWIND, 1, [libunwind available])
34+ ],
35+ [
36+ HAVE_UNWIND=no
37+ if [ test "x${with_unwind}" = "xyes" ]; then
38+ AC_MSG_ERROR([could not find libunwind])
39+ fi
40+ ])
41+else
42+ HAVE_UNWIND=no
43 fi
44
45 dnl libdw is optionally used to add source lines and numbers to backtraces
46-PKG_CHECK_MODULES(DW, libdw, HAVE_DW=yes, HAVE_DW=no)
47-if test "x$HAVE_DW" = "xyes"; then
48- AC_DEFINE(HAVE_DW, 1, [libdw available])
49+AC_ARG_WITH([dw],[AS_HELP_STRING([--with-dw=yes|no|auto],[use libdw])],
50+ [], [with_dw=auto])
51+if [ test "x${with_dw}" != "xno" ]; then
52+ PKG_CHECK_MODULES(DW, [libdw],
53+ [
54+ HAVE_DW=yes
55+ AC_DEFINE(HAVE_DW, 1, [libdw available])
56+ ],
57+ [
58+ HAVE_DW=no
59+ if [ test "x${with_dw}" = "xyes" ]; then
60+ AC_MSG_ERROR([could not find libdw])
61+ fi
62+ ])
63+else
64+ HAVE_DW=no
65 fi
66
67 dnl Check for backtrace() from libc
68--
692.7.4
70