Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package unclutter for openSUSE:Factory checked in at 2024-11-07 16:28:56 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/unclutter (Old) and /work/SRC/openSUSE:Factory/.unclutter.new.2020 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "unclutter" Thu Nov 7 16:28:56 2024 rev:18 rq:1222151 version:8 Changes: -------- --- /work/SRC/openSUSE:Factory/unclutter/unclutter.changes 2024-02-21 17:58:15.215289358 +0100 +++ /work/SRC/openSUSE:Factory/.unclutter.new.2020/unclutter.changes 2024-11-07 16:29:41.211388285 +0100 @@ -1,0 +2,6 @@ +Thu Nov 7 11:42:31 UTC 2024 - Dr. Werner Fink <[email protected]> + +- Add patch unclutter-8-gcc14.patch + * Make it build even with gcc14 + +------------------------------------------------------------------- New: ---- unclutter-8-gcc14.patch BETA DEBUG BEGIN: New: - Add patch unclutter-8-gcc14.patch * Make it build even with gcc14 BETA DEBUG END: ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ unclutter.spec ++++++ --- /var/tmp/diff_new_pack.WBfoSk/_old 2024-11-07 16:29:42.995462504 +0100 +++ /var/tmp/diff_new_pack.WBfoSk/_new 2024-11-07 16:29:43.011463170 +0100 @@ -25,6 +25,7 @@ URL: https://www.ibiblio.org/pub/X11/contrib/utilities/ Source: %{name}-%{version}.tar.bz2 Patch0: %{name}-%{version}-return.diff +Patch1: %{name}-%{version}-gcc14.patch BuildRequires: imake BuildRequires: pkgconfig BuildRequires: pkgconfig(x11) ++++++ unclutter-8-gcc14.patch ++++++ --- unclutter.c | 7 ++++++- vroot.h | 1 + 2 files changed, 7 insertions(+), 1 deletion(-) --- unclutter.c +++ unclutter.c 2024-11-07 11:42:06.317430391 +0000 @@ -24,9 +24,11 @@ #include <X11/Xutil.h> #include <X11/Xproto.h> #include <stdio.h> +#include <stdlib.h> #include "vroot.h" char *progname; +void pexit(str)char *str;{ fprintf(stderr,"%s: %s\n",progname,str); exit(1); @@ -74,6 +76,7 @@ char **names; /* -> argv list of names t * return true if window has a wm_name and the start of it matches * one of the given names to avoid */ +int nameinlist(display,window) Display *display; Window window; @@ -95,6 +98,7 @@ Window window; /* * create a small 1x1 curssor with all pixels masked out on the given screen. */ +Cursor createnullcursor(display,root) Display *display; Window root; @@ -119,7 +123,8 @@ Window root; return cursor; } -main(argc,argv)char **argv;{ +int +main(argc,argv)int argc; char **argv;{ Display *display; int screen,oldx = -99,oldy = -99,numscreens; int doroot = 0, jitter = 0, idletime = 5, usegrabmethod = 0, waitagain = 0, --- vroot.h +++ vroot.h 2024-11-07 11:40:16.247416397 +0000 @@ -40,6 +40,7 @@ static Window VirtualRootWindow(dpy, screen) Display *dpy; +int screen; { static Display *save_dpy = (Display *)0; static int save_screen = -1;
