From 40aaaa64e86ba6710bbeb31c4615a6ce80e75e11 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Wed, 28 Apr 2021 20:21:43 +0100 Subject: gentoo resync : 28.04.2021 --- media-video/vlc/files/vlc-3.0.12.1-limits-p1.patch | 32 +++++++++++++++ media-video/vlc/files/vlc-3.0.12.1-limits-p2.patch | 48 ++++++++++++++++++++++ 2 files changed, 80 insertions(+) create mode 100644 media-video/vlc/files/vlc-3.0.12.1-limits-p1.patch create mode 100644 media-video/vlc/files/vlc-3.0.12.1-limits-p2.patch (limited to 'media-video/vlc/files') diff --git a/media-video/vlc/files/vlc-3.0.12.1-limits-p1.patch b/media-video/vlc/files/vlc-3.0.12.1-limits-p1.patch new file mode 100644 index 000000000000..aaa61a546adf --- /dev/null +++ b/media-video/vlc/files/vlc-3.0.12.1-limits-p1.patch @@ -0,0 +1,32 @@ +https://bugs.gentoo.org/767796 + +From: Robert-André Mauchin +Date: Mon, 14 Dec 2020 02:23:52 +0000 (+0100) +Subject: hls: add missing include +X-Git-Url: https://git.videolan.org/?p=vlc.git;a=commitdiff_plain;h=3aea33378b0b317b99fce2eeaca8b31bf7cc6aba + +hls: add missing include + +Compilation would fail with: + +> error: 'numeric_limits' is not a member of 'std' + +without this include because of some hardening build +flags mandated on Fedora Linux, with GCC 11. + +Refs #25325 + +Signed-off-by: Robert-André Mauchin +Signed-off-by: Alexandre Janniaux +--- + +--- a/modules/demux/hls/playlist/Parser.cpp ++++ b/modules/demux/hls/playlist/Parser.cpp +@@ -42,6 +42,7 @@ + #include + #include + #include ++#include + + using namespace adaptive; + using namespace adaptive::playlist; diff --git a/media-video/vlc/files/vlc-3.0.12.1-limits-p2.patch b/media-video/vlc/files/vlc-3.0.12.1-limits-p2.patch new file mode 100644 index 000000000000..3832b2a1877c --- /dev/null +++ b/media-video/vlc/files/vlc-3.0.12.1-limits-p2.patch @@ -0,0 +1,48 @@ +https://bugs.gentoo.org/767796 + +From: Robert-André Mauchin +Date: Mon, 14 Dec 2020 02:23:52 +0000 (+0100) +Subject: adaptive: add missing include +X-Git-Url: https://git.videolan.org/?p=vlc.git;a=commitdiff_plain;h=e3de1b709b258d2b0e316d927f5c828bdb1a738a + +adaptive: add missing include + +Compilation would fail with: + +> error: 'numeric_limits' is not a member of 'std' + +without this include because of some hardening build +flags mandated on Fedora Linux, with GCC 11. + +Refs #25325 + +Signed-off-by: Robert-André Mauchin +Signed-off-by: Alexandre Janniaux +--- + +--- a/modules/demux/adaptive/playlist/Inheritables.cpp ++++ b/modules/demux/adaptive/playlist/Inheritables.cpp +@@ -29,3 +29,4 @@ ++#include + + using namespace adaptive::playlist; + using namespace adaptive; +--- a/modules/demux/adaptive/playlist/SegmentInformation.cpp ++++ b/modules/demux/adaptive/playlist/SegmentInformation.cpp +@@ -34,6 +34,7 @@ + + #include + #include ++#include + + using namespace adaptive::playlist; + +--- a/modules/demux/adaptive/playlist/SegmentTimeline.cpp ++++ b/modules/demux/adaptive/playlist/SegmentTimeline.cpp +@@ -29,5 +29,6 @@ + + #include ++#include + + using namespace adaptive::playlist; + -- cgit v1.2.3