From nobody Sun May 19 06:50:39 2024 Delivered-To: importer@patchew.org Authentication-Results: mx.zohomail.com; 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 ARC-Seal: i=1; a=rsa-sha256; t=1598394249; cv=none; d=zohomail.com; s=zohoarc; b=maRDo9ZvLE9nziJtIsVgDjuByRklVwJMh4mOQsEBbFq82lhZ5GOSellNJ9nGVIH9+m/goTVdi7E7U+EudnHIQ8We6vbOYTZvYWSLjG1EHRhfXSusy/nHFjcY8Ptosmwz91HXDIVCY67JYBYywR8uzRzuJnrThCsVlhAP3yPqcac= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zohomail.com; s=zohoarc; t=1598394249; h=Content-Transfer-Encoding:Date:From:List-Subscribe:List-Post:List-Id:List-Archive:List-Help:List-Unsubscribe:MIME-Version:Message-ID:Sender:Subject:To; bh=oiGb0W2yo68pVh6wVNZi4qauv+sqhGf5hmVO5mA5ybs=; b=MeH1WUkUF/sn8QcCZpDNVRw5Phr44LQlp9w48XbHsLsFiKAqFMVM5s7WkWK0Mb54MwN/K8QU7To/2TwdZI/lSv4qHPGr8hvZqcRofDxQMemhcPaIVABHoMF7Oe8UdCM3L5cSlRF5DRJuO1u5CoffDdcRGcHvdZau4pme9d7vxHY= ARC-Authentication-Results: i=1; mx.zohomail.com; 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 Return-Path: Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) by mx.zohomail.com with SMTPS id 1598394249115676.3754755296225; Tue, 25 Aug 2020 15:24:09 -0700 (PDT) Received: from localhost ([::1]:50454 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1kAhMN-0005HR-0H for importer@patchew.org; Tue, 25 Aug 2020 18:24:07 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:54144) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1kAhLg-0004qu-69 for qemu-devel@nongnu.org; Tue, 25 Aug 2020 18:23:24 -0400 Received: from mail.ilande.co.uk ([2001:41c9:1:41f::167]:36134 helo=mail.default.ilande.uk0.bigv.io) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1kAhLe-0003dO-BP for qemu-devel@nongnu.org; Tue, 25 Aug 2020 18:23:23 -0400 Received: from host217-42-19-185.range217-42.btcentralplus.com ([217.42.19.185] helo=kentang.home) by mail.default.ilande.uk0.bigv.io with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1kAhM0-0002cp-FD; Tue, 25 Aug 2020 23:23:49 +0100 From: Mark Cave-Ayland To: qemu-devel@nongnu.org, pbonzini@redhat.com, kraxel@redhat.com Date: Tue, 25 Aug 2020 23:23:10 +0100 Message-Id: <20200825222310.27176-1-mark.cave-ayland@ilande.co.uk> X-Mailer: git-send-email 2.20.1 MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-SA-Exim-Connect-IP: 217.42.19.185 X-SA-Exim-Mail-From: mark.cave-ayland@ilande.co.uk Subject: [PATCH] meson: don't require CONFIG_VTE for the GTK UI X-SA-Exim-Version: 4.2.1 (built Wed, 08 May 2019 21:11:16 +0000) X-SA-Exim-Scanned: Yes (on mail.default.ilande.uk0.bigv.io) 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=2001:41c9:1:41f::167; envelope-from=mark.cave-ayland@ilande.co.uk; helo=mail.default.ilande.uk0.bigv.io X-detected-operating-system: by eggs.gnu.org: No matching host in p0f cache. That's all we know. X-Spam_score_int: -18 X-Spam_score: -1.9 X-Spam_bar: - X-Spam_report: (-1.9 / 5.0 requ) BAYES_00=-1.9, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.23 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" Content-Type: text/plain; charset="utf-8" Prevously CONFIG_VTE was not required to build QEMU with GTK UI support as = not all platforms have VTE available (in particular Windows). Remove this requirement from the meson build system to enable QEMU to be bu= ilt with GTK UI support for Windows once again. Signed-off-by: Mark Cave-Ayland Reviewed-by: Gerd Hoffmann --- ui/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/meson.build b/ui/meson.build index 018c5698bf..a81d5c259c 100644 --- a/ui/meson.build +++ b/ui/meson.build @@ -42,7 +42,7 @@ if config_host.has_key('CONFIG_CURSES') ui_modules +=3D {'curses' : curses_ss} endif =20 -if config_host.has_key('CONFIG_GTK') and config_host.has_key('CONFIG_VTE') +if config_host.has_key('CONFIG_GTK') softmmu_ss.add(when: 'CONFIG_WIN32', if_true: files('win32-kbd-hook.c')) =20 gtk_ss =3D ss.source_set() --=20 2.20.1