From nobody Thu May 7 07:02:26 2026 Delivered-To: importer@patchew.org Authentication-Results: mx.zohomail.com; dkim=pass; spf=pass (zohomail.com: domain of gnu.org designates 209.51.188.17 as permitted sender) smtp.mailfrom=qemu-devel-bounces+importer=patchew.org@nongnu.org; dmarc=pass(p=none dis=none) header.from=redhat.com Return-Path: Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) by mx.zohomail.com with SMTPS id 1656423516711226.10457632242992; Tue, 28 Jun 2022 06:38:36 -0700 (PDT) Received: from localhost ([::1]:60166 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1o6BQJ-00065u-OF for importer@patchew.org; Tue, 28 Jun 2022 09:38:35 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:47880) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1o6BBf-00029r-11 for qemu-devel@nongnu.org; Tue, 28 Jun 2022 09:23:27 -0400 Received: from us-smtp-delivery-124.mimecast.com ([170.10.133.124]:57735) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1o6BBd-00024c-1A for qemu-devel@nongnu.org; Tue, 28 Jun 2022 09:23:26 -0400 Received: from mimecast-mx02.redhat.com (mimecast-mx02.redhat.com [66.187.233.88]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-392-K4b9LEq5Nwy6fcEeGnTbjg-1; Tue, 28 Jun 2022 09:23:22 -0400 Received: from smtp.corp.redhat.com (int-mx02.intmail.prod.int.rdu2.redhat.com [10.11.54.2]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id 8BAA21019C83 for ; Tue, 28 Jun 2022 13:23:19 +0000 (UTC) Received: from localhost (unknown [10.39.208.43]) by smtp.corp.redhat.com (Postfix) with ESMTP id 695214050C4B; Tue, 28 Jun 2022 13:23:18 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1656422604; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=O3DRFK8N/Xe21JDTZ3GOh+dWEkNChOvna45ll8nEYrE=; b=HpTJCC8d9hy9iDevs1Zg08LPYZTSw6UM1KZ3aARQBK+QqjcWQNNudfQUYRTwvmRQP6PaeX eummOF24OR9ST3Aq6oktekLu7imdo9d6qXa3aAyCtiXPmHwP2mQArLJLirrdr6sWWqb9P2 ZjnBqtocnxiUptLkL2/CbeuKt7+8QZ0= X-MC-Unique: K4b9LEq5Nwy6fcEeGnTbjg-1 From: marcandre.lureau@redhat.com To: qemu-devel@nongnu.org Cc: pbonzini@redhat.com, =?UTF-8?q?Marc-Andr=C3=A9=20Lureau?= Subject: [PATCH] build-sys: disable vhost-user-gpu if !opengl Date: Tue, 28 Jun 2022 17:23:15 +0400 Message-Id: <20220628132315.664026-1-marcandre.lureau@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable X-Scanned-By: MIMEDefang 2.84 on 10.11.54.2 Received-SPF: pass (zohomail.com: domain of gnu.org designates 209.51.188.17 as permitted sender) client-ip=209.51.188.17; envelope-from=qemu-devel-bounces+importer=patchew.org@nongnu.org; helo=lists.gnu.org; Received-SPF: pass client-ip=170.10.133.124; envelope-from=marcandre.lureau@redhat.com; helo=us-smtp-delivery-124.mimecast.com X-Spam_score_int: -21 X-Spam_score: -2.2 X-Spam_bar: -- X-Spam_report: (-2.2 / 5.0 requ) BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.082, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_DNSWL_NONE=-0.0001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, T_SCC_BODY_TEXT_LINE=-0.01 autolearn=ham autolearn_force=no X-Spam_action: no action X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+importer=patchew.org@nongnu.org Sender: "Qemu-devel" X-ZohoMail-DKIM: pass (identity @redhat.com) X-ZM-MESSAGEID: 1656423518013100001 From: Marc-Andr=C3=A9 Lureau vhost-user-gpu uses epoxy/glflush and thus requires opengl. Signed-off-by: Marc-Andr=C3=A9 Lureau --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index cadc2665a251..6cd22b67d93d 100644 --- a/meson.build +++ b/meson.build @@ -1092,7 +1092,7 @@ if (have_system or have_tools) and (virgl.found() or = opengl.found()) gbm =3D dependency('gbm', method: 'pkg-config', required: false, kwargs: static_kwargs) endif -have_vhost_user_gpu =3D have_vhost_user_gpu and virgl.found() and gbm.foun= d() +have_vhost_user_gpu =3D have_vhost_user_gpu and virgl.found() and opengl.f= ound() and gbm.found() =20 gnutls =3D not_found gnutls_crypto =3D not_found --=20 2.37.0.rc0