Received: by mail.netbsd.org (Postfix, from userid 605) id 0115784DE4; Sun, 5 Jan 2020 22:20:42 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 7EF9184DC3 for ; Sun, 5 Jan 2020 22:20:41 +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 rDQFnCGhZFZt for ; Sun, 5 Jan 2020 22:20:41 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id DD9F784CD3 for ; Sun, 5 Jan 2020 22:20:40 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id D7727FA97; Sun, 5 Jan 2020 22:20:40 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_157826284029930" MIME-Version: 1.0 Date: Sun, 5 Jan 2020 22:20:40 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/graphics/MesaDemos To: pkgsrc-changes@NetBSD.org Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20200105222040.D7727FA97@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. --_----------=_157826284029930 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Sun Jan 5 22:20:40 UTC 2020 Modified Files: pkgsrc/graphics/MesaDemos: options.mk Log Message: MesaDemos: enable wayland where supported To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 pkgsrc/graphics/MesaDemos/options.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_157826284029930 Content-Disposition: inline Content-Length: 743 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/graphics/MesaDemos/options.mk diff -u pkgsrc/graphics/MesaDemos/options.mk:1.3 pkgsrc/graphics/MesaDemos/options.mk:1.4 --- pkgsrc/graphics/MesaDemos/options.mk:1.3 Wed Sep 4 11:31:34 2019 +++ pkgsrc/graphics/MesaDemos/options.mk Sun Jan 5 22:20:40 2020 @@ -1,9 +1,14 @@ -# $NetBSD: options.mk,v 1.3 2019/09/04 11:31:34 nia Exp $ +# $NetBSD: options.mk,v 1.4 2020/01/05 22:20:40 nia Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.MesaDemos PKG_SUPPORTED_OPTIONS= libdrm wayland x11 PKG_SUGGESTED_OPTIONS= libdrm x11 +.include "../../devel/wayland/platform.mk" +.if ${PLATFORM_SUPPORTS_WAYLAND} == "yes" +PKG_SUGGESTED_OPTIONS+= wayland +.endif + .include "../../mk/bsd.options.mk" PLIST_VARS+= wayland x11 --_----------=_157826284029930--