Received: by mail.netbsd.org (Postfix, from userid 605) id 7130884D50; Sat, 4 Jan 2020 01:53:56 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id EF19784CD8 for ; Sat, 4 Jan 2020 01:53:55 +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 tb2i0FCA9lEI for ; Sat, 4 Jan 2020 01:53:55 +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 536E384CD5 for ; Sat, 4 Jan 2020 01:53:55 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 4A8D3FA97; Sat, 4 Jan 2020 01:53:55 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1578102835275380" MIME-Version: 1.0 Date: Sat, 4 Jan 2020 01:53:55 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/graphics/MesaLib To: pkgsrc-changes@NetBSD.org Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20200104015355.4A8D3FA97@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. --_----------=_1578102835275380 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Sat Jan 4 01:53:55 UTC 2020 Modified Files: pkgsrc/graphics/MesaLib: options.mk Log Message: MesaLib: probably makes more sense to check wayland here To generate a diff of this commit: cvs rdiff -u -r1.78 -r1.79 pkgsrc/graphics/MesaLib/options.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1578102835275380 Content-Disposition: inline Content-Length: 1027 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/graphics/MesaLib/options.mk diff -u pkgsrc/graphics/MesaLib/options.mk:1.78 pkgsrc/graphics/MesaLib/options.mk:1.79 --- pkgsrc/graphics/MesaLib/options.mk:1.78 Sat Jan 4 01:50:32 2020 +++ pkgsrc/graphics/MesaLib/options.mk Sat Jan 4 01:53:55 2020 @@ -1,4 +1,4 @@ -# $NetBSD: options.mk,v 1.78 2020/01/04 01:50:32 nia Exp $ +# $NetBSD: options.mk,v 1.79 2020/01/04 01:53:55 nia Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.MesaLib @@ -8,16 +8,14 @@ PKG_SUPPORTED_OPTIONS+= llvm vulkan x11 .if ${MESALIB_SUPPORTS_DRI} == "yes" PKG_SUPPORTED_OPTIONS+= wayland +. include "../../devel/wayland/platform.mk" +. if ${PLATFORM_SUPPORTS_WAYLAND} == "yes" +PKG_SUGGESTED_OPTIONS+= wayland +. endif .endif PKG_SUGGESTED_OPTIONS+= x11 -.include "../../devel/wayland/platform.mk" - -.if ${PLATFORM_SUPPORTS_WAYLAND} == "yes" -PKG_SUGGESTED_OPTIONS+= wayland -.endif - # The LLVM option enables JIT accelerated software rendering and is also # required to support the latest RADEON GPUs. # --_----------=_1578102835275380--