From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 003221584AD for ; Thu, 24 Apr 2025 03:37:03 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id DC1B6342FF8 for ; Thu, 24 Apr 2025 03:37:02 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 1CC3C1104A9; Thu, 24 Apr 2025 03:36:59 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id 172061104A9 for ; Thu, 24 Apr 2025 03:36:59 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A1178342FED for ; Thu, 24 Apr 2025 03:36:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0DFE425EF for ; Thu, 24 Apr 2025 03:36:57 +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: <1745465375.624de4844d6f83d901265368a581d5871570bc8c.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-9999.ebuild X-VCS-Directories: media-libs/mesa/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: 624de4844d6f83d901265368a581d5871570bc8c X-VCS-Branch: master Date: Thu, 24 Apr 2025 03:36:57 +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: b32d8dcd-b97c-4e7b-8aa2-5e63d9eca42c X-Archives-Hash: 9a4f6a6b2c620248be8644e06945292c commit: 624de4844d6f83d901265368a581d5871570bc8c Author: Matt Turner gentoo org> AuthorDate: Thu Apr 24 03:09:29 2025 +0000 Commit: Matt Turner gentoo org> CommitDate: Thu Apr 24 03:29:35 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=624de484 media-libs/mesa: Depend on mesa_clc for VIDEO_CARDS=panfrost Necessary since upstream commit 20970bcd965 ("panfrost: Add base of OpenCL C infrastructure"). Signed-off-by: Matt Turner gentoo.org> media-libs/mesa/mesa-9999.ebuild | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/media-libs/mesa/mesa-9999.ebuild b/media-libs/mesa/mesa-9999.ebuild index 168c3a5c292f..f70c18645616 100644 --- a/media-libs/mesa/mesa-9999.ebuild +++ b/media-libs/mesa/mesa-9999.ebuild @@ -179,6 +179,7 @@ BDEPEND=" dev-python/pyyaml[\${PYTHON_USEDEP}] ") video_cards_intel? ( ${CLC_DEPSTRING} ) + video_cards_panfrost? ( ${CLC_DEPSTRING} ) vulkan? ( dev-util/glslang video_cards_nvk? ( @@ -435,8 +436,9 @@ multilib_src_configure() { emesonargs+=($(meson_feature video_cards_intel intel-rt)) fi - if use video_cards_intel; then - emesonargs+=(-Dmesa-clc=system) + if use video_cards_intel || + use video_cards_panfrost; then + emesonargs+=(-Dmesa-clc=system) fi use debug && EMESON_BUILDTYPE=debug