summaryrefslogtreecommitdiffstats
path: root/meta-multimedia
diff options
context:
space:
mode:
authorJose Quaresma <quaresma.jose@gmail.com>2022-04-03 19:01:02 +0100
committerKhem Raj <raj.khem@gmail.com>2022-04-06 20:25:33 -0400
commit3b64d027cf6e87b8de24bdeb842b122a0118552a (patch)
tree0cbfb0385918ad49d80dad12bddb22558dd63e5a /meta-multimedia
parent9e215a8b657d716465b6d6c6d9f735be837eb2f6 (diff)
downloadmeta-openembedded-3b64d027cf6e87b8de24bdeb842b122a0118552a.tar.gz
srt: 1.4.2 -> 1.4.3
Signed-off-by: Jose Quaresma <quaresma.jose@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-multimedia')
-rw-r--r--meta-multimedia/recipes-support/srt/srt/0001-core-Fix-build-with-GCC-11.-1806.patch26
-rw-r--r--meta-multimedia/recipes-support/srt/srt_1.4.3.bb (renamed from meta-multimedia/recipes-support/srt/srt_1.4.2.bb)3
2 files changed, 1 insertions, 28 deletions
diff --git a/meta-multimedia/recipes-support/srt/srt/0001-core-Fix-build-with-GCC-11.-1806.patch b/meta-multimedia/recipes-support/srt/srt/0001-core-Fix-build-with-GCC-11.-1806.patch
deleted file mode 100644
index 0cb6943ccb..0000000000
--- a/meta-multimedia/recipes-support/srt/srt/0001-core-Fix-build-with-GCC-11.-1806.patch
+++ /dev/null
@@ -1,26 +0,0 @@
1From f1b35cbf5b9b42b031e9b119e4c802b5f744468c Mon Sep 17 00:00:00 2001
2From: Christophe Giboudeaux <krop@users.noreply.github.com>
3Date: Wed, 10 Feb 2021 12:42:45 +0000
4Subject: [PATCH] [core] Fix build with GCC 11. (#1806)
5
6The 'limits' header must be included explicitly.
7---
8Upstream-Status: Backport [https://github.com/haivision/srt/commit/f1b35cbf5b9b42b031e9b119e4c802b5f744468c]
9 srtcore/sync.h | 1 +
10 1 file changed, 1 insertion(+)
11
12diff --git a/srtcore/sync.h b/srtcore/sync.h
13index 59c125a7..9f01ca91 100644
14--- a/srtcore/sync.h
15+++ b/srtcore/sync.h
16@@ -15,6 +15,7 @@
17 //#define ENABLE_CXX17
18
19 #include <cstdlib>
20+#include <limits>
21 #ifdef ENABLE_STDCXX_SYNC
22 #include <chrono>
23 #include <thread>
24--
252.30.1
26
diff --git a/meta-multimedia/recipes-support/srt/srt_1.4.2.bb b/meta-multimedia/recipes-support/srt/srt_1.4.3.bb
index 5b5c1f24d9..9dc862c57b 100644
--- a/meta-multimedia/recipes-support/srt/srt_1.4.2.bb
+++ b/meta-multimedia/recipes-support/srt/srt_1.4.3.bb
@@ -6,10 +6,9 @@ HOMEPAGE = "https://github.com/Haivision/srt"
6LICENSE = "MPL-2.0" 6LICENSE = "MPL-2.0"
7LIC_FILES_CHKSUM = "file://LICENSE;md5=815ca599c9df247a0c7f619bab123dad" 7LIC_FILES_CHKSUM = "file://LICENSE;md5=815ca599c9df247a0c7f619bab123dad"
8 8
9SRCREV = "50b7af06f3a0a456c172b4cb3aceafa8a5cc0036" 9SRCREV = "291e010fbf91b13b92e1cde5dcb824a9d7f4e353"
10SRC_URI = "git://github.com/Haivision/srt;protocol=https;branch=master \ 10SRC_URI = "git://github.com/Haivision/srt;protocol=https;branch=master \
11 file://0001-don-t-install-srt-ffplay.patch \ 11 file://0001-don-t-install-srt-ffplay.patch \
12 file://0001-core-Fix-build-with-GCC-11.-1806.patch \
13 " 12 "
14UPSTREAM_CHECK_GITTAGREGEX = "v(?P<pver>\d+(\.\d+)+)" 13UPSTREAM_CHECK_GITTAGREGEX = "v(?P<pver>\d+(\.\d+)+)"
15S = "${WORKDIR}/git" 14S = "${WORKDIR}/git"