From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 282CA138359 for ; Fri, 25 Sep 2020 17:00:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5884AE0823; Fri, 25 Sep 2020 17:00:33 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 3A8BBE0823 for ; Fri, 25 Sep 2020 17:00:33 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 168A6335C47 for ; Fri, 25 Sep 2020 17:00:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7BFC5357 for ; Fri, 25 Sep 2020 17:00:29 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1601053219.eaa3ae4e0c08862c1cd97e73bf329dd9ed8d53b8.mattst88@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/mesa/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/mesa/mesa-20.2.0_rc4.ebuild media-libs/mesa/mesa-9999.ebuild X-VCS-Directories: media-libs/mesa/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: eaa3ae4e0c08862c1cd97e73bf329dd9ed8d53b8 X-VCS-Branch: master Date: Fri, 25 Sep 2020 17:00:29 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: c9f42b78-c598-44db-bdd8-1ebe93dc6058 X-Archives-Hash: daf976f3ea36170c6ab580aaeb727761 commit: eaa3ae4e0c08862c1cd97e73bf329dd9ed8d53b8 Author: Mike Lothian fireburn co uk> AuthorDate: Fri Sep 25 09:44:19 2020 +0000 Commit: Matt Turner gentoo org> CommitDate: Fri Sep 25 17:00:19 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eaa3ae4e media-libs/mesa: Replace meson enabled with true The meson build system no longer accepts enabled, use true instead Signed-off-by: Mike Lothian fireburn.co.uk> Closes: https://github.com/gentoo/gentoo/pull/17658 Signed-off-by: Matt Turner gentoo.org> media-libs/mesa/mesa-20.2.0_rc4.ebuild | 2 +- media-libs/mesa/mesa-9999.ebuild | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/media-libs/mesa/mesa-20.2.0_rc4.ebuild b/media-libs/mesa/mesa-20.2.0_rc4.ebuild index d7ceac80a26..049d7be7074 100644 --- a/media-libs/mesa/mesa-20.2.0_rc4.ebuild +++ b/media-libs/mesa/mesa-20.2.0_rc4.ebuild @@ -496,7 +496,7 @@ multilib_src_configure() { emesonargs+=( $(meson_use test build-tests) -Dglx=$(usex X dri disabled) - -Dshared-glapi=enabled + -Dshared-glapi=true $(meson_feature dri3) $(meson_feature egl) $(meson_feature gbm) diff --git a/media-libs/mesa/mesa-9999.ebuild b/media-libs/mesa/mesa-9999.ebuild index 9a49069d0d3..7e2bd851871 100644 --- a/media-libs/mesa/mesa-9999.ebuild +++ b/media-libs/mesa/mesa-9999.ebuild @@ -490,8 +490,8 @@ multilib_src_configure() { emesonargs+=( $(meson_use test build-tests) -Dglx=$(usex X dri disabled) - -Dglvnd=enabled - -Dshared-glapi=enabled + -Dglvnd=true + -Dshared-glapi=true $(meson_feature dri3) $(meson_feature egl) $(meson_feature gbm)