From 4171ae200b77a6c266b0e1ebb507d61d1ade3501 Mon Sep 17 00:00:00 2001 From: Sam Clegg Date: Mon, 4 Nov 2024 08:34:48 -0800 Subject: [PATCH] Update SDL2 to port 2.30.9 (#22830) --- ChangeLog.md | 1 + tools/ports/sdl2.py | 7 ++----- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/ChangeLog.md b/ChangeLog.md index 33db05132086..ee77f2fbfaa4 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -20,6 +20,7 @@ See docs/process.md for more on how version tagging works. 3.1.71 (in development) ----------------------- +- SDL2 port updated to 2.30.9. (#22830) - LLVM's `-Wnontrivial-memaccess` warning has been updated to also warn about passing non-trivially-copyable destination parameter to `memcpy`, `memset` and similar functions for which it is a documented undefined diff --git a/tools/ports/sdl2.py b/tools/ports/sdl2.py index 924173ddbac7..bd26d50053c7 100644 --- a/tools/ports/sdl2.py +++ b/tools/ports/sdl2.py @@ -5,11 +5,8 @@ import os -# For now we pin to specific commit since we want to include -# https://github.com/libsdl-org/SDL/pull/11127 -# Once the next version of SDL2 is tagged we can use that here instead. -TAG = '3deb07ea395373204462130c1e062bc1f71fe060' -HASH = '551082bffb28442ad20662c6963fb02701449d43e7da6aa68fbec922e47b060609e3cdf5f9e3bfde7458a92547e008f010af79ddadf448665e55ca8759cfbcdb' +TAG = 'release-2.30.9' +HASH = '00079415bd3aab9ab2cf67c466ca0ab96076ff8b9c8ed6d4e11db15e10f5cf91f49da6356cf3ed9adc91e185c1aada3886baa80d14d421729805adaa98563e36' SUBDIR = 'SDL-' + TAG variants = {'sdl2-mt': {'PTHREADS': 1}}