Received: by mail.netbsd.org (Postfix, from userid 605) id 0CB9584E74; Sat, 24 Sep 2022 07:15:16 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 3E3E084E62 for ; Sat, 24 Sep 2022 07:15: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 04LuxtlQ0nEP for ; Sat, 24 Sep 2022 07:15:14 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 9559284D2A for ; Sat, 24 Sep 2022 07:15:14 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 8ECE0FA90; Sat, 24 Sep 2022 07:15:14 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_166400371464960" MIME-Version: 1.0 Date: Sat, 24 Sep 2022 07:15:14 +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: <20220924071514.8ECE0FA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_166400371464960 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Sat Sep 24 07:15:14 UTC 2022 Modified Files: pkgsrc/graphics/cairo: options.mk Log Message: cairo: if quartz is found, prefer it to x11 (cairo-quartz is needed by gtk4) To generate a diff of this commit: cvs rdiff -u -r1.21 -r1.22 pkgsrc/graphics/cairo/options.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_166400371464960 Content-Disposition: inline Content-Length: 745 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/graphics/cairo/options.mk diff -u pkgsrc/graphics/cairo/options.mk:1.21 pkgsrc/graphics/cairo/options.mk:1.22 --- pkgsrc/graphics/cairo/options.mk:1.21 Tue May 25 09:08:10 2021 +++ pkgsrc/graphics/cairo/options.mk Sat Sep 24 07:15:14 2022 @@ -1,11 +1,14 @@ -# $NetBSD: options.mk,v 1.21 2021/05/25 09:08:10 thor Exp $ +# $NetBSD: options.mk,v 1.22 2022/09/24 07:15:14 wiz Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.cairo PKG_SUPPORTED_OPTIONS= x11 xcb .if exists(/System/Library/Frameworks/Quartz.framework) PKG_SUPPORTED_OPTIONS+= quartz +PKG_SUGGESTED_OPTIONS+= quartz +.else +PKG_SUGGESTED_OPTIONS= x11 .endif -PKG_SUGGESTED_OPTIONS= x11 xcb +PKG_SUGGESTED_OPTIONS+= xcb .include "../../mk/bsd.options.mk" --_----------=_166400371464960--