Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (Client CN "mail.NetBSD.org", Issuer "mail.NetBSD.org CA" (not verified)) by mollari.NetBSD.org (Postfix) with ESMTPS id BF5FB1A9217 for ; Thu, 14 Jan 2021 17:40:32 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 6A46584DC2; Thu, 14 Jan 2021 17:40:32 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id A569284CDC for ; Thu, 14 Jan 2021 17:40:31 +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 py3WxfwFT7fY for ; Thu, 14 Jan 2021 17:40:31 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 04B5384CBC for ; Thu, 14 Jan 2021 17:40:31 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id F2E07FA9D; Thu, 14 Jan 2021 17:40:30 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1610646030192480" MIME-Version: 1.0 Date: Thu, 14 Jan 2021 17:40:30 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/x11/xcursor To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20210114174030.F2E07FA9D@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1610646030192480 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Thu Jan 14 17:40:30 UTC 2021 Modified Files: pkgsrc/x11/xcursor: builtin.mk Log Message: xcursor: switch from Xfixes to libXfixes To generate a diff of this commit: cvs rdiff -u -r1.16 -r1.17 pkgsrc/x11/xcursor/builtin.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1610646030192480 Content-Disposition: inline Content-Length: 1186 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/x11/xcursor/builtin.mk diff -u pkgsrc/x11/xcursor/builtin.mk:1.16 pkgsrc/x11/xcursor/builtin.mk:1.17 --- pkgsrc/x11/xcursor/builtin.mk:1.16 Sun Nov 3 09:14:19 2019 +++ pkgsrc/x11/xcursor/builtin.mk Thu Jan 14 17:40:30 2021 @@ -1,4 +1,4 @@ -# $NetBSD: builtin.mk,v 1.16 2019/11/03 09:14:19 rillig Exp $ +# $NetBSD: builtin.mk,v 1.17 2021/01/14 17:40:30 wiz Exp $ BUILTIN_PKG:= xcursor @@ -41,7 +41,7 @@ MAKEVARS+= BUILTIN_PKG.xcursor ### Determine whether we should use the built-in implementation if it ### exists, and set USE_BUILTIN. appropriate ("yes" or "no"). ### -.if defined(USE_BUILTIN.Xfixes) && !empty(USE_BUILTIN.Xfixes:M[nN][oO]) +.if defined(USE_BUILTIN.libXfixes) && !empty(USE_BUILTIN.libXfixes:M[nN][oO]) USE_BUILTIN.xcursor= no .endif .if defined(USE_BUILTIN.Xrender) && !empty(USE_BUILTIN.Xrender:M[nN][oO]) @@ -85,7 +85,7 @@ CHECK_BUILTIN.xcursor?= no BUILDLINK_API_DEPENDS.xcursor+= xcursor>=1.1.1 BUILDLINK_API_DEPENDS.Xrender+= Xrender>=0.8 . for _mkfile_ in buildlink3.mk builtin.mk -. sinclude "../../x11/Xfixes/${_mkfile_}" +. sinclude "../../x11/libXfixes/${_mkfile_}" . endfor . endif --_----------=_1610646030192480--