Hello community, here is the log from the commit of package tboot for openSUSE:Factory checked in at 2019-06-18 14:56:00 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/tboot (Old) and /work/SRC/openSUSE:Factory/.tboot.new.4811 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "tboot" Tue Jun 18 14:56:00 2019 rev:39 rq:705831 version:20190520_1.9.10 Changes: -------- --- /work/SRC/openSUSE:Factory/tboot/tboot.changes 2019-05-21 10:39:55.119105248 +0200 +++ /work/SRC/openSUSE:Factory/.tboot.new.4811/tboot.changes 2019-06-18 14:56:03.477414155 +0200 @@ -1,0 +2,6 @@ +Tue May 28 08:19:14 UTC 2019 - mgerstner <matthias.gerst...@suse.com> + +- add disable-address-of-packed-member-warning.patch: taken over patch found + in the Fedora package to disable a new gcc-9 warning that breaks the build. + +------------------------------------------------------------------- New: ---- disable-address-of-packed-member-warning.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ tboot.spec ++++++ --- /var/tmp/diff_new_pack.9FeuGF/_old 2019-06-18 14:56:04.113413757 +0200 +++ /var/tmp/diff_new_pack.9FeuGF/_new 2019-06-18 14:56:04.117413755 +0200 @@ -28,6 +28,9 @@ Patch3: tboot-grub2-fix-menu-in-xen-host-server.patch Patch4: tboot-grub2-fix-xen-submenu-name.patch Patch7: tboot-distributor.patch +# This patch should be removed once upstream has a stock solution for the +# gcc-9 warning +Patch8: disable-address-of-packed-member-warning.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build ExclusiveArch: %{ix86} x86_64 BuildRequires: openssl-devel @@ -54,6 +57,7 @@ %patch3 -p1 %patch4 -p1 %patch7 -p1 +%patch8 -p1 %build export CFLAGS="%{optflags}" ++++++ disable-address-of-packed-member-warning.patch ++++++ >From 1cf1c3e6af1f43555de7ec89cd1e8bc3ea0aaefe Mon Sep 17 00:00:00 2001 From: Yunying Sun <yunying....@intel.com> Date: Mon, 13 May 2019 17:26:13 +0800 Subject: [PATCH] disable address of packed member warning --- Config.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Config.mk b/Config.mk index 6a64d1a..27bce1b 100644 --- a/Config.mk +++ b/Config.mk @@ -43,7 +43,7 @@ CFLAGS_WARN = -Wall -Wformat-security -Werror -Wstrict-prototypes \ -Wextra -Winit-self -Wswitch-default -Wunused-parameter \ -Wwrite-strings \ $(call cc-option,$(CC),-Wlogical-op,) \ - -Wno-missing-field-initializers + -Wno-missing-field-initializers -Wno-address-of-packed-member AS = as LD = ld -- 2.21.0