From nobody Sat Apr 27 17:48:46 2024 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 1516026440813299.03984389432003; Mon, 15 Jan 2018 06:27:20 -0800 (PST) Received: from localhost ([::1]:39285 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eb5jL-0006xN-L1 for importer@patchew.org; Mon, 15 Jan 2018 09:27:19 -0500 Received: from eggs.gnu.org ([2001:4830:134:3::10]:40688) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eb5ho-0005vC-Sf for qemu-devel@nongnu.org; Mon, 15 Jan 2018 09:25:45 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eb5hn-00054c-U0 for qemu-devel@nongnu.org; Mon, 15 Jan 2018 09:25:44 -0500 Received: from mx1.redhat.com ([209.132.183.28]:53324) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1eb5hn-00054B-OV for qemu-devel@nongnu.org; Mon, 15 Jan 2018 09:25:43 -0500 Received: from smtp.corp.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id EBE8113AA3 for ; Mon, 15 Jan 2018 14:25:42 +0000 (UTC) Received: from t460.redhat.com (unknown [10.33.36.88]) by smtp.corp.redhat.com (Postfix) with ESMTP id F363360171; Mon, 15 Jan 2018 14:25:34 +0000 (UTC) From: "Daniel P. Berrange" To: qemu-devel@nongnu.org Date: Mon, 15 Jan 2018 14:25:33 +0000 Message-Id: <20180115142533.24585-1-berrange@redhat.com> X-Scanned-By: MIMEDefang 2.79 on 10.5.11.11 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.29]); Mon, 15 Jan 2018 14:25:42 +0000 (UTC) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-Received-From: 209.132.183.28 Subject: [Qemu-devel] [PATCH] ui: deprecate use of SDL 1.2 in favour of 2.0 series 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: 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" The SDL 2.0 release was made in Aug, 2013: https://www.libsdl.org/release/ That will soon be 4 + 1/2 years ago, which is enough time to consider the 2.0 series widely supported. Thus we deprecate the SDL 1.2 support, which will allow us to delete it in the last release of 2018. By this time, SDL 2.0 will be more than 5 years old. Signed-off-by: Daniel P. Berrange Reviewed-by: Marc-Andr=C3=A9 Lureau --- configure | 6 ++++++ qemu-doc.texi | 7 +++++++ ui/sdl.c | 3 +++ 3 files changed, 16 insertions(+) diff --git a/configure b/configure index b272a0336b..dc2615a0cb 100755 --- a/configure +++ b/configure @@ -5635,6 +5635,12 @@ if test "$gtkabi" =3D "2.0"; then echo "WARNING: future releases. Please switch to using GTK 3.0" fi =20 +if test "$sdlabi" =3D "1.2"; then + echo + echo "WARNING: Use of SDL 1.2 is deprecated and will be removed in" + echo "WARNING: future releases. Please switch to using SDL 2.0" +fi + if test "$supported_cpu" =3D "no"; then echo echo "WARNING: SUPPORT FOR THIS HOST CPU WILL GO AWAY IN FUTURE RELEAS= ES!" diff --git a/qemu-doc.texi b/qemu-doc.texi index 3e9eb819a6..3d2b3ff1ea 100644 --- a/qemu-doc.texi +++ b/qemu-doc.texi @@ -2596,6 +2596,13 @@ and 3.x series APIs. Support for the GTK 2.x builds = will be discontinued, so maintainers should switch to using GTK 3.x, which is the default. =20 +@subsection SDL 1.2 + +Previously QEMU has supported building against both SDL 1.2 +and 2.0 series APIs. Support for the SDL 1.2 builds will be +discontinued, so maintainers should switch to using SDL 2.0, +which is the default. + @section System emulator command line arguments =20 @subsection -tdf (since 1.3.0) diff --git a/ui/sdl.c b/ui/sdl.c index 7b71a9ac58..8a93054fd4 100644 --- a/ui/sdl.c +++ b/ui/sdl.c @@ -963,6 +963,9 @@ void sdl_display_init(DisplayState *ds, int full_screen= , int no_frame) exit(1); } =20 + g_printerr("Running QEMU with SDL 1.2 is deprecated, and will be remov= ed\n" + "in a future release. Please switch to SDL 2.0 instead\n"); + if (no_frame) gui_noframe =3D 1; =20 --=20 2.14.3