Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package mediastreamer2 for openSUSE:Factory checked in at 2021-02-16 22:35:14 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/mediastreamer2 (Old) and /work/SRC/openSUSE:Factory/.mediastreamer2.new.28504 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "mediastreamer2" Tue Feb 16 22:35:14 2021 rev:32 rq:870820 version:4.4.24 Changes: -------- --- /work/SRC/openSUSE:Factory/mediastreamer2/mediastreamer2.changes 2021-01-27 18:57:16.900344897 +0100 +++ /work/SRC/openSUSE:Factory/.mediastreamer2.new.28504/mediastreamer2.changes 2021-02-16 22:36:35.729666266 +0100 @@ -1,0 +2,6 @@ +Wed Feb 10 09:52:37 UTC 2021 - Christophe Giboudeaux <christo...@krop.fr> + +- Add patch to fix build with GCC 11 (boo#1181920) + * 0001-Fix-build-with-GCC-11.patch + +------------------------------------------------------------------- New: ---- 0001-Fix-build-with-GCC-11.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ mediastreamer2.spec ++++++ --- /var/tmp/diff_new_pack.7sG2Z7/_old 2021-02-16 22:36:36.433667203 +0100 +++ /var/tmp/diff_new_pack.7sG2Z7/_new 2021-02-16 22:36:36.437667209 +0100 @@ -28,6 +28,8 @@ Source: https://github.com/BelledonneCommunications/%{name}/archive/%{version}.tar.gz#/%{name}-%{version}.tar.gz Source99: baselibs.conf Patch0: mediastreamer2-fix-pkgconfig.patch +# PATCH-FIX-UPSTREAM +Patch1: 0001-Fix-build-with-GCC-11.patch BuildRequires: bcmatroska2-devel BuildRequires: cmake BuildRequires: doxygen ++++++ 0001-Fix-build-with-GCC-11.patch ++++++ >From a6387266bbb8615589e75b4f4b73c278d61d36cc Mon Sep 17 00:00:00 2001 From: Christophe Giboudeaux <christo...@krop.fr> Date: Wed, 10 Feb 2021 10:51:15 +0100 Subject: [PATCH] Fix build with GCC 11. The 'limits' header must be included explicitly. --- src/utils/mkv_reader.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/utils/mkv_reader.cpp b/src/utils/mkv_reader.cpp index 5d5a32c3..372f3009 100644 --- a/src/utils/mkv_reader.cpp +++ b/src/utils/mkv_reader.cpp @@ -20,6 +20,7 @@ #include <algorithm> #include <array> #include <cwchar> +#include <limits> #include <list> #include <memory> #include <vector> -- 2.30.0