Received: by mail.netbsd.org (Postfix, from userid 605) id 2019F84DF8; Thu, 2 Jan 2020 17:00:16 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 9D27284D8C for ; Thu, 2 Jan 2020 17:00:15 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id 1K0KGpBTXq6w for ; Thu, 2 Jan 2020 17:00:15 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 232B784C6C for ; Thu, 2 Jan 2020 17:00:15 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 1BFF0FA97; Thu, 2 Jan 2020 17:00:15 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1577984415264050" MIME-Version: 1.0 Date: Thu, 2 Jan 2020 17:00:15 +0000 From: "David H. Gutteridge" Subject: CVS commit: pkgsrc/wm/xfce4-wm To: pkgsrc-changes@NetBSD.org Reply-To: gutteridge@netbsd.org X-Mailer: log_accum Message-Id: <20200102170015.1BFF0FA97@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1577984415264050 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: gutteridge Date: Thu Jan 2 17:00:15 UTC 2020 Modified Files: pkgsrc/wm/xfce4-wm: distinfo Added Files: pkgsrc/wm/xfce4-wm/patches: patch-src_misc.c Log Message: xfce4-wm: fix compilation when DEBUG_TRACE is enabled Adding this in case anyone else is inclined to enable DEBUG_TRACE. (No PKGREVISION since this doesn't affect regular builds.) To generate a diff of this commit: cvs rdiff -u -r1.29 -r1.30 pkgsrc/wm/xfce4-wm/distinfo cvs rdiff -u -r0 -r1.1 pkgsrc/wm/xfce4-wm/patches/patch-src_misc.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1577984415264050 Content-Disposition: inline Content-Length: 1722 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/wm/xfce4-wm/distinfo diff -u pkgsrc/wm/xfce4-wm/distinfo:1.29 pkgsrc/wm/xfce4-wm/distinfo:1.30 --- pkgsrc/wm/xfce4-wm/distinfo:1.29 Sat Aug 17 18:49:46 2019 +++ pkgsrc/wm/xfce4-wm/distinfo Thu Jan 2 17:00:14 2020 @@ -1,7 +1,8 @@ -$NetBSD: distinfo,v 1.29 2019/08/17 18:49:46 gutteridge Exp $ +$NetBSD: distinfo,v 1.30 2020/01/02 17:00:14 gutteridge Exp $ SHA1 (xfwm4-4.14.0.tar.bz2) = 08a16f03a5dea56e5628c03780106153f71c92bc RMD160 (xfwm4-4.14.0.tar.bz2) = f63f3d9d18671a2e5b1beb9b9760643c9d3240e9 SHA512 (xfwm4-4.14.0.tar.bz2) = 27261b08b53ba7e70db547db81775154c2f4285ab0f1f8336bd9ef0aeacb3ab705ae8ac5b05f9ac23de550a9065e76487dc93a99e553549bff1c25ceb5216939 Size (xfwm4-4.14.0.tar.bz2) = 1122735 bytes SHA1 (patch-defaults_defaults) = 116409b6ee52344984bf6547c9f6cf06d6d66b92 +SHA1 (patch-src_misc.c) = 9536fd9111712d96575c383bf5f88626ad741a9e Added files: Index: pkgsrc/wm/xfce4-wm/patches/patch-src_misc.c diff -u /dev/null pkgsrc/wm/xfce4-wm/patches/patch-src_misc.c:1.1 --- /dev/null Thu Jan 2 17:00:15 2020 +++ pkgsrc/wm/xfce4-wm/patches/patch-src_misc.c Thu Jan 2 17:00:14 2020 @@ -0,0 +1,16 @@ +$NetBSD: patch-src_misc.c,v 1.1 2020/01/02 17:00:14 gutteridge Exp $ + +Disable broken TRACE() call. +https://bugzilla.xfce.org/show_bug.cgi?id=16329 + +--- src/misc.c.orig 2019-08-11 20:53:12.000000000 +0000 ++++ src/misc.c +@@ -51,7 +51,7 @@ getMouseXY (ScreenInfo *screen_info, gin + guint mask; + gint x1, y1; + +- TRACE ("window (0x%lx)", w); ++ /* TRACE ("window (0x%lx)", w); */ + + myDisplayErrorTrapPush (screen_info->display_info); + XQueryPointer (myScreenGetXDisplay (screen_info), screen_info->xroot, &w1, &w2, &x1, &y1, x2, y2, &mask); --_----------=_1577984415264050--