Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package rss-glx for openSUSE:Factory checked in at 2021-06-02 22:12:15 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/rss-glx (Old) and /work/SRC/openSUSE:Factory/.rss-glx.new.1898 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "rss-glx" Wed Jun 2 22:12:15 2021 rev:16 rq:896844 version:0.9.1 Changes: -------- --- /work/SRC/openSUSE:Factory/rss-glx/rss-glx.changes 2019-12-13 12:06:06.641362805 +0100 +++ /work/SRC/openSUSE:Factory/.rss-glx.new.1898/rss-glx.changes 2021-06-02 22:12:41.804085370 +0200 @@ -1,0 +2,6 @@ +Tue Jun 1 21:32:20 UTC 2021 - Christophe Giboudeaux <christo...@krop.fr> + +- Add GCC 11 compatibility fix: + * 0001-Fix-build-with-GCC-11.patch + +------------------------------------------------------------------- New: ---- 0001-Fix-build-with-GCC-11.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ rss-glx.spec ++++++ --- /var/tmp/diff_new_pack.HgHV7W/_old 2021-06-02 22:12:42.296084154 +0200 +++ /var/tmp/diff_new_pack.HgHV7W/_new 2021-06-02 22:12:42.300084144 +0200 @@ -1,7 +1,7 @@ # # spec file for package rss-glx # -# Copyright (c) 2019 SUSE LLC +# Copyright (c) 2021 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -33,6 +33,8 @@ # include MagickCore/MagickCore.h and MagickWand/MagickWand.h for # ImageMagick-7 instead; the upstream seem to be dead anyway though Patch1: rss-glx-ImageMagick7.patch +# PATCH-FIX-UPSTREAM +Patch2: 0001-Fix-build-with-GCC-11.patch BuildRequires: Mesa-libGL-devel BuildRequires: gcc-c++ # directory ownership @@ -54,6 +56,7 @@ %setup -q -n %{name}_%{version} %patch0 %patch1 -p1 +%patch2 -p1 %build autoreconf -fiv @@ -62,7 +65,8 @@ --with-pic \ --with-configdir=%{_sysconfdir}/xscreensaver \ --program-prefix="%{name}-" -make %{?_smp_mflags} + +%make_build %install %make_install ++++++ 0001-Fix-build-with-GCC-11.patch ++++++ >From 5bd2d3b144e57112402bf8b887e0d1e78dc60702 Mon Sep 17 00:00:00 2001 From: Christophe Giboudeaux <christo...@krop.fr> Date: Tue, 1 Jun 2021 23:31:58 +0200 Subject: [PATCH] Fix build with GCC 11 --- src/Implicit/impSurface.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Implicit/impSurface.h b/src/Implicit/impSurface.h index 41fab81..027587f 100644 --- a/src/Implicit/impSurface.h +++ b/src/Implicit/impSurface.h @@ -25,6 +25,7 @@ #ifdef WIN32 #include <windows.h> #endif +#include <cstddef> #include <vector> #include <GL/gl.h> -- 2.31.1