From nobody Tue Nov 4 15:30:52 2025 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of gnu.org designates 208.118.235.17 as permitted sender) client-ip=208.118.235.17; envelope-from=qemu-devel-bounces+importer=patchew.org@nongnu.org; helo=lists.gnu.org; Authentication-Results: mx.zohomail.com; spf=pass (zoho.com: domain of gnu.org designates 208.118.235.17 as permitted sender) smtp.mailfrom=qemu-devel-bounces+importer=patchew.org@nongnu.org Return-Path: Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) by mx.zohomail.com with SMTPS id 1530377755265131.91364998967686; Sat, 30 Jun 2018 09:55:55 -0700 (PDT) Received: from localhost ([::1]:47448 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fZJAA-00021A-JZ for importer@patchew.org; Sat, 30 Jun 2018 12:55:54 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:59183) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fZJ9M-0001fv-CC for qemu-devel@nongnu.org; Sat, 30 Jun 2018 12:55:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fZJ9H-0000Zs-HT for qemu-devel@nongnu.org; Sat, 30 Jun 2018 12:55:04 -0400 Received: from isrv.corpit.ru ([86.62.121.231]:42213) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1fZJ9H-000067-9F for qemu-devel@nongnu.org; Sat, 30 Jun 2018 12:54:59 -0400 Received: from tsrv.corpit.ru (tsrv.tls.msk.ru [192.168.177.2]) by isrv.corpit.ru (Postfix) with ESMTP id 91E474181E; Sat, 30 Jun 2018 19:54:49 +0300 (MSK) Received: from tls.msk.ru (mjt.vpn.tls.msk.ru [192.168.177.99]) by tsrv.corpit.ru (Postfix) with SMTP id 7B7C811B4; Sat, 30 Jun 2018 19:54:49 +0300 (MSK) Received: (nullmailer pid 30841 invoked by uid 1000); Sat, 30 Jun 2018 16:54:49 -0000 From: Michael Tokarev To: qemu-devel@nongnu.org Date: Sat, 30 Jun 2018 19:54:48 +0300 Message-Id: <20180630165448.30795-1-mjt@msgid.tls.msk.ru> X-Mailer: git-send-email 2.11.0 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-Received-From: 86.62.121.231 Subject: [Qemu-devel] [PATCH] ui: do not build-depend or link with libdrm, it is not needed X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Michael Tokarev , Gerd Hoffmann Errors-To: qemu-devel-bounces+importer=patchew.org@nongnu.org Sender: "Qemu-devel" X-ZohoMail: RSF_0 Z_629925259 SPT_0 Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Opengl support brings up libdrm. But actually nothing uses this library or includes any of its headers. Just remove checking for it from configure. Signed-off-by: Michael Tokarev Reviewed-by: Philippe Mathieu-Daud=C3=A9 --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index 65548df1fc..951ff022dd 100755 --- a/configure +++ b/configure @@ -3865,7 +3865,7 @@ libs_softmmu=3D"$libs_softmmu $fdt_libs" # opengl probe (for sdl2, gtk, milkymist-tmu2) =20 if test "$opengl" !=3D "no" ; then - opengl_pkgs=3D"epoxy libdrm gbm" + opengl_pkgs=3D"epoxy gbm" if $pkg_config $opengl_pkgs; then opengl_cflags=3D"$($pkg_config --cflags $opengl_pkgs)" opengl_libs=3D"$($pkg_config --libs $opengl_pkgs)" --=20 2.11.0