Hello community, here is the log from the commit of package libqt5-qtserialbus for openSUSE:Factory checked in at 2019-08-27 10:25:09 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/libqt5-qtserialbus (Old) and /work/SRC/openSUSE:Factory/.libqt5-qtserialbus.new.7948 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "libqt5-qtserialbus" Tue Aug 27 10:25:09 2019 rev:14 rq:726108 version:5.13.0 Changes: -------- --- /work/SRC/openSUSE:Factory/libqt5-qtserialbus/libqt5-qtserialbus.changes 2019-06-28 16:29:47.494229213 +0200 +++ /work/SRC/openSUSE:Factory/.libqt5-qtserialbus.new.7948/libqt5-qtserialbus.changes 2019-08-27 10:25:11.503924288 +0200 @@ -1,0 +2,6 @@ +Fri Aug 23 07:40:56 UTC 2019 - Christophe Giboudeaux <[email protected]> + +- Add 0001-SocketCAN-Fix-compiler-error-SIOCGSTAMP-was-not-decl.patch + to fix a build issue with recent kernel versions. + +------------------------------------------------------------------- New: ---- 0001-SocketCAN-Fix-compiler-error-SIOCGSTAMP-was-not-decl.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ libqt5-qtserialbus.spec ++++++ --- /var/tmp/diff_new_pack.RC0Yk1/_old 2019-08-27 10:25:12.567924208 +0200 +++ /var/tmp/diff_new_pack.RC0Yk1/_new 2019-08-27 10:25:12.567924208 +0200 @@ -31,6 +31,8 @@ %define tar_version qtserialbus-everywhere-src-5.13.0 Source: https://download.qt.io/official_releases/qt/5.13/%{real_version}/submodules/%{tar_version}.tar.xz Source1: baselibs.conf +# PATCH-FIX-UPSTREAM +Patch0: 0001-SocketCAN-Fix-compiler-error-SIOCGSTAMP-was-not-decl.patch BuildRequires: fdupes BuildRequires: libQt5Core-private-headers-devel >= %{version} BuildRequires: libQt5DBus-devel >= %{version} @@ -51,6 +53,7 @@ %prep %setup -q -n %{tar_version} +%patch0 -p1 %package -n libQt5SerialBus5 Summary: Qt 5 Serial Bus Addon ++++++ 0001-SocketCAN-Fix-compiler-error-SIOCGSTAMP-was-not-decl.patch ++++++ >From 43d746c2c0c87c8694e835f3b052317c8fa02482 Mon Sep 17 00:00:00 2001 From: Andre Hartmann <[email protected]> Date: Mon, 8 Jul 2019 21:35:12 +0200 Subject: [PATCH 1/4] =?UTF-8?q?SocketCAN:=20Fix=20compiler=20error=20"?= =?UTF-8?q?=E2=80=98SIOCGSTAMP=E2=80=99=20was=20not=20declared"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes: QTBUG-76957 Change-Id: I8c4c86aa23137d67f5d20eedfe1c46a241c0632b Reviewed-by: Alex Blasche <[email protected]> Reviewed-by: Denis Shienkov <[email protected]> --- src/plugins/canbus/socketcan/socketcanbackend.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/plugins/canbus/socketcan/socketcanbackend.cpp b/src/plugins/canbus/socketcan/socketcanbackend.cpp index 74b0d1d..a2da146 100644 --- a/src/plugins/canbus/socketcan/socketcanbackend.cpp +++ b/src/plugins/canbus/socketcan/socketcanbackend.cpp @@ -45,6 +45,7 @@ #include <linux/can/error.h> #include <linux/can/raw.h> +#include <linux/sockios.h> #include <errno.h> #include <unistd.h> #include <net/if.h> -- 2.23.0
