Hello community, here is the log from the commit of package gtk3 for openSUSE:Factory checked in at 2018-06-22 13:15:49 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/gtk3 (Old) and /work/SRC/openSUSE:Factory/.gtk3.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "gtk3" Fri Jun 22 13:15:49 2018 rev:131 rq:616616 version:3.22.30 Changes: -------- --- /work/SRC/openSUSE:Factory/gtk3/gtk3.changes 2018-04-30 22:49:54.776220754 +0200 +++ /work/SRC/openSUSE:Factory/.gtk3.new/gtk3.changes 2018-06-22 13:15:53.113920870 +0200 @@ -1,0 +2,7 @@ +Tue Jun 12 05:35:47 UTC 2018 - [email protected] + +- Add gtk3-filechooserbutton-Fix-reserved-pointers.patch: Stop gcc + from complaining about unnecessary parenthesis, fix gnucash build + failures. + +------------------------------------------------------------------- New: ---- gtk3-filechooserbutton-Fix-reserved-pointers.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ gtk3.spec ++++++ --- /var/tmp/diff_new_pack.OHmWVQ/_old 2018-06-22 13:15:55.993814081 +0200 +++ /var/tmp/diff_new_pack.OHmWVQ/_new 2018-06-22 13:15:56.025812894 +0200 @@ -35,8 +35,10 @@ Source99: baselibs.conf # PATCH-FIX-OPENSUSE gtk3-GTK_PATH64.patch [email protected] - 64-bit dual install. Use GTK_PATH64 environment variable instead of GTK_PATH Patch0: gtk3-GTK_PATH64.patch -# PATCH-FIX-OPENSUSE revert-forced-xftdpi.patch [email protected] -- Revert very controversal commit on GTK3, forcing DPI to 96 +# PATCH-FIX-OPENSUSE gtk3-revert-forced-xftdpi.patch [email protected] -- Revert very controversal commit on GTK3, forcing DPI to 96 Patch1: gtk3-revert-forced-xftdpi.patch +# PATCH-FIX-UPSTREAM gtk3-filechooserbutton-Fix-reserved-pointers.patch [email protected] -- Stop gcc from complaining about unnecessary parenthesis resulting build failures in gnucash. +Patch2: gtk3-filechooserbutton-Fix-reserved-pointers.patch BuildRequires: cups-devel >= 1.2 BuildRequires: docbook-xsl-stylesheets BuildRequires: fdupes @@ -350,6 +352,7 @@ %patch0 -p1 %endif %patch1 -p1 +%patch2 -p1 %build %configure \ ++++++ gtk3-filechooserbutton-Fix-reserved-pointers.patch ++++++ >From e44bbeb558ddef5ffd3749aca3fec2dafaa0d634 Mon Sep 17 00:00:00 2001 From: Benjamin Otte <[email protected]> Date: Tue, 10 Apr 2018 14:22:16 +0200 Subject: [PATCH] filechooserbutton: Fix reserved pointers So gcc stops complaining about unnecessary parenthesis. --- gtk/gtkfilechooserbutton.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/gtk/gtkfilechooserbutton.h b/gtk/gtkfilechooserbutton.h index 0e5276fe71..fcad9f4f88 100644 --- a/gtk/gtkfilechooserbutton.h +++ b/gtk/gtkfilechooserbutton.h @@ -63,10 +63,10 @@ struct _GtkFileChooserButtonClass /*< private >*/ /* Padding for future expansion */ - void (*__gtk_reserved1); - void (*__gtk_reserved2); - void (*__gtk_reserved3); - void (*__gtk_reserved4); + void (*__gtk_reserved1) (void); + void (*__gtk_reserved2) (void); + void (*__gtk_reserved3) (void); + void (*__gtk_reserved4) (void); }; -- 2.13.7
