Received: by mail.netbsd.org (Postfix, from userid 605) id 3721384F1B; Tue, 4 Oct 2022 07:14:13 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 686EF84F15 for ; Tue, 4 Oct 2022 07:14:12 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id 99EUIYyAnV2e for ; Tue, 4 Oct 2022 07:14:12 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id BBB5384D12 for ; Tue, 4 Oct 2022 07:14:11 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id B903CFA90; Tue, 4 Oct 2022 07:14:11 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_16648676515410" MIME-Version: 1.0 Date: Tue, 4 Oct 2022 07:14:11 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/graphics/cairo To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20221004071411.B903CFA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_16648676515410 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Tue Oct 4 07:14:11 UTC 2022 Modified Files: pkgsrc/graphics/cairo: buildlink3.mk Log Message: cairo: make buildlink3 logic for xcb match options.mk To generate a diff of this commit: cvs rdiff -u -r1.61 -r1.62 pkgsrc/graphics/cairo/buildlink3.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_16648676515410 Content-Disposition: inline Content-Length: 925 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/graphics/cairo/buildlink3.mk diff -u pkgsrc/graphics/cairo/buildlink3.mk:1.61 pkgsrc/graphics/cairo/buildlink3.mk:1.62 --- pkgsrc/graphics/cairo/buildlink3.mk:1.61 Mon Aug 17 20:17:27 2020 +++ pkgsrc/graphics/cairo/buildlink3.mk Tue Oct 4 07:14:11 2022 @@ -1,4 +1,4 @@ -# $NetBSD: buildlink3.mk,v 1.61 2020/08/17 20:17:27 leot Exp $ +# $NetBSD: buildlink3.mk,v 1.62 2022/10/04 07:14:11 wiz Exp $ BUILDLINK_TREE+= cairo @@ -16,11 +16,11 @@ BUILDLINK_API_DEPENDS.Xrender+= Xrender> pkgbase := cairo .include "../../mk/pkg-build-options.mk" -.if !empty(PKG_BUILD_OPTIONS.cairo:Mxcb) +.if ${PKG_BUILD_OPTIONS.cairo:Mxcb} .include "../../x11/libxcb/buildlink3.mk" .endif -.if !empty(PKG_BUILD_OPTIONS.cairo:Mx11) +.if ${PKG_BUILD_OPTIONS.cairo:Mx11} || ${PKG_BUILD_OPTIONS.cairo:Mxcb} .include "../../x11/libXext/buildlink3.mk" .include "../../x11/libXrender/buildlink3.mk" .endif --_----------=_16648676515410--