Skip to content

Commit ee9c8a9

Browse files
authored
Merge pull request #3586 from pygame-community/starbuck-SDL-2.32.10
Update to SDL 2.32.10 and 3.2.22
2 parents 7c0b27e + 5fd18ca commit ee9c8a9

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

buildconfig/download_win_prebuilt.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -78,12 +78,12 @@ def get_urls(x86=True, x64=True):
7878
url_sha1 = []
7979
url_sha1.extend([
8080
[
81-
'https://github.com/libsdl-org/SDL/releases/download/release-2.32.8/SDL2-devel-2.32.8-VC.zip',
82-
'ec8bbf2a2d2bf754fe04b6ffc647f78aa7f4c2a1',
81+
'https://github.com/libsdl-org/SDL/releases/download/release-2.32.10/SDL2-devel-2.32.10-VC.zip',
82+
'27f5179346a0b0db80c4dd1769c7c9d62b9a91f3'
8383
],
8484
[
85-
'https://github.com/libsdl-org/SDL/releases/download/release-3.2.18/SDL3-devel-3.2.18-VC.zip',
86-
'96246e328e2da7c2bd2c5734d5cb98953aca8229'
85+
'https://github.com/libsdl-org/SDL/releases/download/release-3.2.22/SDL3-devel-3.2.22-VC.zip',
86+
'502313757118a068a6ef8f767d082b95334ca456'
8787
],
8888
[
8989
'https://github.com/pygame-community/SDL_image/releases/download/2.8.8-pgce/SDL2_image-devel-2.8.8-VCpgce.zip',
@@ -269,23 +269,23 @@ def copy(src, dst):
269269
copy(
270270
os.path.join(
271271
temp_dir,
272-
'SDL2-devel-2.32.8-VC/SDL2-2.32.8'
272+
'SDL2-devel-2.32.10-VC/SDL2-2.32.10'
273273
),
274274
os.path.join(
275275
move_to_dir,
276276
prebuilt_dir,
277-
'SDL2-2.32.8'
277+
'SDL2-2.32.10'
278278
)
279279
)
280280
copy(
281281
os.path.join(
282282
temp_dir,
283-
'SDL3-devel-3.2.18-VC/SDL3-3.2.18'
283+
'SDL3-devel-3.2.22-VC/SDL3-3.2.22'
284284
),
285285
os.path.join(
286286
move_to_dir,
287287
prebuilt_dir,
288-
'SDL3-3.2.18'
288+
'SDL3-3.2.22'
289289
)
290290
)
291291

buildconfig/manylinux-build/docker_base/sdl_libs/build-sdl2-libs.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ set -e -x
33

44
cd $(dirname `readlink -f "$0"`)
55

6-
SDL2_VER="2.32.8"
6+
SDL2_VER="2.32.10"
77
SDL2="SDL2-$SDL2_VER"
88
IMG2_VER="2.8.8"
99
IMG2="SDL2_image-$IMG2_VER"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
484c33638e7bd1002815bb1f6a47a292d1eaf0b963598dde65f4a3e077dfe75ee35b9ea4b3b767365b3ef4f613c4d69ce55b5e96675de562994344e83a978272 SDL2-2.32.8.tar.gz
1+
b67ebdb46bc3b41c974113937e15445e47a6e115692761e2812c3965e85b9ca4d804633de6369fa3dd36cc77f5d08655570c1707245b2c46f88114aa3238fd1b SDL2-2.32.10.tar.gz
22
5c521ae6a053e1eb6b42dce3ccccdbdb353eb7e9d1bd89392b1913bfc9fbb6b8a9d5506c80e5b7924b51637bb95cd270657ca87dafe60edd5534e333524bc901 SDL2_image-2.8.8.tar.gz
33
6148591404b2113bcdb54391821658548acfe380a9cba660113e55e6f2fb7da2a5a59a99fefe51a0d7f8b91160648f11f72750353da88d285a962e3a410aecd7 SDL2_mixer-2.8.1.tar.gz
44
a0f94e26f0387385f13ec1eb08ddca677d4181969073a50af387a0dce9c7bdddf393c028c8084538e01f875e19790ef7ae9a00c5106bf7ca9d21f3fcf9eee885 SDL2_ttf-2.24.0.tar.gz

meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ if plat == 'win' and host_machine.cpu_family().startswith('x86')
9494
# yes, this is a bit ugly and hardcoded but it is what it is
9595
# TODO (middle-term goal) - Should migrate away from this
9696
# consider meson wraps? Hopefully can also get the same build path as below
97-
sdl_ver = (sdl_api == 3) ? '3.2.18' : '2.32.8'
97+
sdl_ver = (sdl_api == 3) ? '3.2.22' : '2.32.10'
9898
sdl_image_ver = (sdl_api == 3) ? '3.2.4' : '2.8.8'
9999
sdl_mixer_ver = '2.8.1'
100100
sdl_ttf_ver = (sdl_api == 3) ? '3.2.2' : '2.24.0'

0 commit comments

Comments
 (0)