Hello community, here is the log from the commit of package inotify-tools for openSUSE:Factory checked in at 2015-10-19 22:54:02 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/inotify-tools (Old) and /work/SRC/openSUSE:Factory/.inotify-tools.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "inotify-tools" Changes: -------- --- /work/SRC/openSUSE:Factory/inotify-tools/inotify-tools.changes 2015-03-25 21:05:21.000000000 +0100 +++ /work/SRC/openSUSE:Factory/.inotify-tools.new/inotify-tools.changes 2015-10-20 00:09:04.000000000 +0200 @@ -1,0 +2,5 @@ +Mon Oct 19 14:42:30 UTC 2015 - [email protected] + +- reserved-identifier.patch: fix invalid use of reserved identifier + +------------------------------------------------------------------- New: ---- reserved-identifier.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ inotify-tools.spec ++++++ --- /var/tmp/diff_new_pack.mlM36m/_old 2015-10-20 00:09:05.000000000 +0200 +++ /var/tmp/diff_new_pack.mlM36m/_new 2015-10-20 00:09:05.000000000 +0200 @@ -28,6 +28,8 @@ Patch0: inotify-return.patch # PATCH-FIX-OPENSUSE inotify-tools-no-timestamp-in-doc.patch [email protected] -- Remove timestamps from documentation Patch1: inotify-tools-no-timestamp-in-doc.patch +# PATCH-FIX-UPSTREAM fix invalid use of reserved identifier +Patch2: reserved-identifier.patch BuildRequires: doxygen BuildRequires: fdupes BuildRequires: glibc-devel @@ -70,6 +72,7 @@ %setup -q %patch0 -p1 %patch1 -p1 +%patch2 -p1 %build %configure --disable-static \ ++++++ reserved-identifier.patch ++++++ >From 9249c6809645a21cf345ef0a610d161a92f0586c Mon Sep 17 00:00:00 2001 From: Andreas Schwab <[email protected]> Date: Mon, 19 Oct 2015 16:39:07 +0200 Subject: [PATCH] Fix invalid use of reserved identifier Identifiers starting with __ are reserved for the implementation and must not be defined by the application. --- libinotifytools/src/test.c | 1 - 1 file changed, 1 deletion(-) diff --git a/libinotifytools/src/test.c b/libinotifytools/src/test.c index 7c5fc07..52959ee 100644 --- a/libinotifytools/src/test.c +++ b/libinotifytools/src/test.c @@ -5,7 +5,6 @@ #include "../../config.h" -#define __USE_MISC #include <unistd.h> #include <stdio.h> -- 2.6.2
