mailarchive of the ptxdist mailing list
 help / color / mirror / Atom feed
From: Christian Melki <christian.melki@t2data.com>
To: ptxdist@pengutronix.de
Subject: [ptxdist] [PATCH v2] sdl2: Version bump. 2.24.2 -> 2.26.0. Configuration fixes.
Date: Thu,  1 Dec 2022 11:16:32 +0100	[thread overview]
Message-ID: <20221201101632.3995161-1-christian.melki@t2data.com> (raw)

Coming in hot on the last update.
2.26.x is probably the last stable series before SDL 3.0.
Actually not that many new features that a new series would indicate.

https://github.com/libsdl-org/SDL/releases/tag/release-2.26.0
Changed/explicitly specified a few config opts.

* Add missing global largefile opt.
* Allow an older x86 compiler to tune for mmx, but
disable mmx completely for x86_64.
* Allow older x86 to tune for sse, and x86_64 to tune for sse
(since x86_64 includes x86 arch),sse2 and sse3.
Runtime has instruction detection with enable-cpuinfo.
* Allow arch ppc compiler to tune for altivec when specified.
* Explicitly disable lsx, lasx instructions for loongson arch.
* Explicitly disable xfixes xorg protocol.
* Enable offscreen rendering capability.

Signed-off-by: Christian Melki <christian.melki@t2data.com>
---
 rules/sdl2.make | 24 ++++++++++++++++--------
 1 file changed, 16 insertions(+), 8 deletions(-)

diff --git a/rules/sdl2.make b/rules/sdl2.make
index 1fec56d41..c33199ccf 100644
--- a/rules/sdl2.make
+++ b/rules/sdl2.make
@@ -14,8 +14,8 @@ PACKAGES-$(PTXCONF_SDL2) += sdl2
 #
 # Paths and names
 #
-SDL2_VERSION	:= 2.24.2
-SDL2_MD5	:= 84c71cb2a14aa0d9504513c0b9fcb17c
+SDL2_VERSION	:= 2.26.0
+SDL2_MD5	:= 35bc58cfe41b8fb6c8e6646be26fa47e
 SDL2		:= SDL2-$(SDL2_VERSION)
 SDL2_SUFFIX	:= tar.gz
 SDL2_URL	:= https://www.libsdl.org/release/$(SDL2).$(SDL2_SUFFIX)
@@ -27,12 +27,16 @@ SDL2_LICENSE	:= zlib
 # Prepare
 # ----------------------------------------------------------------------------
 
+# Only x86, not x86-64.
+OLDER_X86	:= $(if $(PTXCONF_ARCH_X86_64),,$(PTXCONF_ARCH_X86))
+
 #
 # autoconf
 #
 SDL2_CONF_TOOL	:= autoconf
 SDL2_CONF_OPT	:= \
 	$(CROSS_AUTOCONF_USR) \
+	$(GLOBAL_LARGE_FILE_OPTION) \
 	--enable-shared \
 	--disable-static \
 	--enable-libtool-lock \
@@ -55,13 +59,15 @@ SDL2_CONF_OPT	:= \
 	--enable-loadso \
 	--enable-cpuinfo \
 	--enable-assembly \
-	--disable-ssemath \
-	--disable-mmx \
+	--$(call ptx/endis,PTXCONF_ARCH_X86)-ssemath \
+	--$(call ptx/endis,OLDER_X86)-mmx \
 	--disable-3dnow \
-	--disable-sse \
-	--disable-sse2 \
-	--disable-sse3 \
-	--disable-altivec \
+	--$(call ptx/endis,PTXCONF_ARCH_X86)-sse \
+	--$(call ptx/endis,PTXCONF_ARCH_X86_64)-sse2 \
+	--$(call ptx/endis,PTXCONF_ARCH_X86_64)-sse3 \
+	--$(call ptx/endis,PTXCONF_ARCH_PPC_ALTIVEC)-altivec \
+	--disable-lsx \
+	--disable-lasx \
 	--$(call ptx/endis,PTXCONF_SDL2_OSS)-oss \
 	--$(call ptx/endis,PTXCONF_SDL2_ALSA)-alsa \
 	--disable-alsatest \
@@ -100,6 +106,7 @@ SDL2_CONF_OPT	:= \
 	--$(call ptx/endis,PTXCONF_SDL2_XORG)-video-x11-xcursor \
 	--disable-video-x11-xdbe \
 	--$(call ptx/endis,PTXCONF_SDL2_XORG)-video-x11-xinput \
+	--disable-video-x11-xfixes \
 	--$(call ptx/endis,PTXCONF_SDL2_XORG)-video-x11-xrandr \
 	--disable-video-x11-scrnsaver \
 	--disable-video-x11-xshape \
@@ -112,6 +119,7 @@ SDL2_CONF_OPT	:= \
 	--$(call ptx/endis,PTXCONF_SDL2_KMS)-video-kmsdrm \
 	--$(call ptx/endis,PTXCONF_SDL2_KMS)-kmsdrm-shared \
 	--enable-video-dummy \
+	--enable-video-offscreen \
 	--$(call ptx/endis,PTXCONF_SDL2_OPENGL)-video-opengl \
 	--$(call ptx/endis,PTXCONF_SDL2_OPENGLES)-video-opengles \
 	--$(call ptx/endis,PTXCONF_SDL2_OPENGLES1)-video-opengles1 \
-- 
2.34.1




             reply	other threads:[~2022-12-01 10:17 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-12-01 10:16 Christian Melki [this message]
2022-12-05 12:53 ` [ptxdist] [APPLIED] " Michael Olbrich

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20221201101632.3995161-1-christian.melki@t2data.com \
    --to=christian.melki@t2data.com \
    --cc=ptxdist@pengutronix.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox