From nobody Sun Nov 16 05:42:10 2025 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=1599147230; cv=none; d=zohomail.com; s=zohoarc; b=VcIr4i/3FPA1HRpsxp9Y2xkMgRU7ENhQveSp21G900Vf+7qLr3culfxMl39qwRaurE4fOo6TzZKXZw64s++/r3/0To8FEC2Hy0APpd6mWSRV8TwXac7EkMKCWh2NYmcHTPtQHskd6Yu1jlWX0Ll6hWp9DUkibRkX+hh/RMeMG2c= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zohomail.com; s=zohoarc; t=1599147230; h=Content-Transfer-Encoding:Cc:Date:From:List-Subscribe:List-Post:List-Id:List-Archive:List-Help:List-Unsubscribe:MIME-Version:Message-ID:Sender:Subject:To; bh=RB6Ydl7N2iW4PWizf9d4NG6ISJ66qFL6gDId2pLElT8=; b=jKQQumjWZiUhiQYxcKKBBYUk+r2u6AZ8ZiJbS56p6ZCXqJXxc9g0A/KI58lQYGqqpiWfko8vIB2GVhbJerKGjikXxO9VXZIIt8yfO3JqF17WWUlwwHFcgK5QrP+eQPp7Di6TD0FRmnXupBcSBG6onFCprC88ipmAoNqPAdOq7GM= 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 15991472301621012.1171638952891; Thu, 3 Sep 2020 08:33:50 -0700 (PDT) Received: from localhost ([::1]:53868 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1kDrFF-0001LU-El for importer@patchew.org; Thu, 03 Sep 2020 11:33:49 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:52178) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1kDrBe-0005Gp-51 for qemu-devel@nongnu.org; Thu, 03 Sep 2020 11:30:06 -0400 Received: from mx2.suse.de ([195.135.220.15]:57620) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1kDrBc-0000hz-0J for qemu-devel@nongnu.org; Thu, 03 Sep 2020 11:30:05 -0400 Received: from relay2.suse.de (unknown [195.135.221.27]) by mx2.suse.de (Postfix) with ESMTP id 7B9C9AD7A; Thu, 3 Sep 2020 15:29:51 +0000 (UTC) X-Virus-Scanned: by amavisd-new at test-mx.suse.de From: Bruce Rogers To: qemu-devel@nongnu.org Subject: [PATCH] meson: remove linkage of sdl to baum Date: Thu, 3 Sep 2020 09:29:33 -0600 Message-Id: <20200903152933.97838-1-brogers@suse.com> X-Mailer: git-send-email 2.28.0 MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable 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=195.135.220.15; envelope-from=brogers@suse.com; helo=mx2.suse.de X-detected-operating-system: by eggs.gnu.org: First seen = 2020/09/03 00:06:01 X-ACL-Warn: Detected OS = Linux 2.2.x-3.x (no timestamps) [generic] X-Spam_score_int: -41 X-Spam_score: -4.2 X-Spam_bar: ---- X-Spam_report: (-4.2 / 5.0 requ) BAYES_00=-1.9, RCVD_IN_DNSWL_MED=-2.3, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, 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: , Cc: pbonzini@redhat.com, Bruce Rogers , f4bug@amsat.org, samuel.thibault@ens-lyon.org Errors-To: qemu-devel-bounces+importer=patchew.org@nongnu.org Sender: "Qemu-devel" Content-Type: text/plain; charset="utf-8" Ever since commit 537fe2d63f744e7c96ff45b60d09486a81958e06 there has been a 'linkage' to sdl for compiling baum.c. Originally it had to do with including sdl cflags for any file including sdl headers. There is no longer any such need for baum.c, but the association has persisted in the make system, and with the switch to meson it has now become a hard requirement, which now causes chardev-baum.so to not be produced if sdl is not configured. Remove this bogus linkage. Signed-off-by: Bruce Rogers Reviewed-by: Marc-Andr=C3=A9 Lureau --- chardev/meson.build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/chardev/meson.build b/chardev/meson.build index 27a9a28f4c..54e88d0310 100644 --- a/chardev/meson.build +++ b/chardev/meson.build @@ -36,9 +36,9 @@ softmmu_ss.add(when: ['CONFIG_SPICE', spice], if_true: fi= les('spice.c')) =20 chardev_modules =3D {} =20 -if config_host.has_key('CONFIG_BRLAPI') and sdl.found() +if config_host.has_key('CONFIG_BRLAPI') module_ss =3D ss.source_set() - module_ss.add(when: [sdl, brlapi], if_true: [files('baum.c'), pixman]) + module_ss.add(when: [brlapi], if_true: [files('baum.c'), pixman]) chardev_modules +=3D { 'baum': module_ss } endif =20 --=20 2.28.0