Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package imlib2 for openSUSE:Factory checked in at 2022-05-20 17:50:29 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/imlib2 (Old) and /work/SRC/openSUSE:Factory/.imlib2.new.1538 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "imlib2" Fri May 20 17:50:29 2022 rev:46 rq:978088 version:1.7.5 Changes: -------- --- /work/SRC/openSUSE:Factory/imlib2/imlib2.changes 2021-12-20 21:06:11.078929705 +0100 +++ /work/SRC/openSUSE:Factory/.imlib2.new.1538/imlib2.changes 2022-05-20 17:50:46.539228721 +0200 @@ -1,0 +2,6 @@ +Mon May 16 13:33:19 UTC 2022 - Berthold Gunreben <azo...@opensuse.org> + +- declare counter in for loop for big endian to unsignedint (loader_ico.c) + bigendian.patch + +------------------------------------------------------------------- New: ---- bigendian.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ imlib2.spec ++++++ --- /var/tmp/diff_new_pack.4OoxKu/_old 2022-05-20 17:50:47.071229205 +0200 +++ /var/tmp/diff_new_pack.4OoxKu/_new 2022-05-20 17:50:47.079229213 +0200 @@ -1,7 +1,7 @@ # # spec file for package imlib2 # -# Copyright (c) 2021 SUSE LLC +# Copyright (c) 2022 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -25,6 +25,7 @@ Group: Development/Libraries/X11 URL: https://sourceforge.net/projects/enlightenment/ Source: https://downloads.sourceforge.net/project/enlightenment/imlib2-src/%{version}/%{name}-%{version}.tar.xz +Patch0: bigendian.patch BuildRequires: giflib-devel BuildRequires: libICE-devel BuildRequires: libjpeg-devel @@ -96,6 +97,7 @@ %prep %setup -q +%patch0 -p1 %build %configure \ ++++++ bigendian.patch ++++++ Index: imlib2-1.7.5/src/modules/loaders/loader_ico.c =================================================================== --- imlib2-1.7.5.orig/src/modules/loaders/loader_ico.c +++ imlib2-1.7.5/src/modules/loaders/loader_ico.c @@ -142,6 +142,9 @@ ico_read_icon(ico_t * ico, int ino) { ie_t *ie; unsigned int size; +#ifdef WORDS_BIGENDIAN + unsigned int nr; +#endif ie = &ico->ie[ino];