From ae0e79aa015dac29b420c5abd40d996e1154f866 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Sat, 4 Jul 2026 23:57:00 +0300 Subject: [PATCH] ports: Update openal-soft 1.24.3->1.25.2 and use SDL3 No need to use SDL2 anymore :^) --- ports/openal-soft/build.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ports/openal-soft/build.sh b/ports/openal-soft/build.sh index 1beee890..8156fcab 100755 --- a/ports/openal-soft/build.sh +++ b/ports/openal-soft/build.sh @@ -1,9 +1,9 @@ #!/bin/bash ../install.sh NAME='openal-soft' -VERSION='1.24.3' -DOWNLOAD_URL="https://github.com/kcat/openal-soft/archive/refs/tags/$VERSION.tar.gz#7e1fecdeb45e7f78722b776c5cf30bd33934b961d7fd2a11e0494e064cc631ce" -DEPENDENCIES=('SDL2' 'zlib' 'libsndfile') +VERSION='1.25.2' +DOWNLOAD_URL="https://github.com/kcat/openal-soft/archive/refs/tags/$VERSION.tar.gz#fb27e5839aa11f0e5b9d33756965291fad5d6909ab928ea1f796f4a1a6877894" +DEPENDENCIES=('SDL3' 'zlib' 'libsndfile') configure() { cmake --fresh -B build -S . -G Ninja \ @@ -12,7 +12,7 @@ configure() { -DCMAKE_BUILD_TYPE=Release \ -DALSOFT_EXAMPLES=OFF \ -DALSOFT_NO_CONFIG_UTIL=ON \ - -DALSOFT_BACKEND_SDL2=ON \ + -DALSOFT_BACKEND_SDL3=ON \ || exit 1 }