From d4079d1bd1b200ba0352969cc647469d0ad17824 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthias=20Mail=C3=A4nder?= Date: Thu, 5 Jan 2017 21:26:45 +0100 Subject: [PATCH] Update Windows SDL2 to version 2.0.5 --- thirdparty/fetch-thirdparty-deps-windows.sh | 6 +++--- thirdparty/fetch-thirdparty-deps.ps1 | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/thirdparty/fetch-thirdparty-deps-windows.sh b/thirdparty/fetch-thirdparty-deps-windows.sh index 04c3b9241a..8e66593308 100755 --- a/thirdparty/fetch-thirdparty-deps-windows.sh +++ b/thirdparty/fetch-thirdparty-deps-windows.sh @@ -19,9 +19,9 @@ function get() if [ ! -f SDL2.dll ]; then echo "Fetching SDL2 from libsdl.org" - wget https://www.libsdl.org/release/SDL2-2.0.4-win32-x86.zip - unzip SDL2-2.0.4-win32-x86.zip SDL2.dll - rm SDL2-2.0.4-win32-x86.zip + wget https://www.libsdl.org/release/SDL2-2.0.5-win32-x86.zip + unzip SDL2-2.0.5-win32-x86.zip SDL2.dll + rm SDL2-2.0.5-win32-x86.zip fi if [ ! -f freetype6.dll ]; then diff --git a/thirdparty/fetch-thirdparty-deps.ps1 b/thirdparty/fetch-thirdparty-deps.ps1 index d06a114070..7f99ae157b 100644 --- a/thirdparty/fetch-thirdparty-deps.ps1 +++ b/thirdparty/fetch-thirdparty-deps.ps1 @@ -70,7 +70,7 @@ if (!(Test-Path "windows/SDL2.dll")) echo "Fetching SDL2 from libsdl.org" # Download zip: - $zipFileName = "SDL2-2.0.4-win32-x86.zip" + $zipFileName = "SDL2-2.0.5-win32-x86.zip" $target = Join-Path $pwd.ToString() $zipFileName (New-Object System.Net.WebClient).DownloadFile("https://www.libsdl.org/release/" + $zipFileName, $target) @@ -82,7 +82,7 @@ if (!(Test-Path "windows/SDL2.dll")) $destination.Copyhere($zipFile.items()) # Remove junk files: - rm SDL2-2.0.4-win32-x86.zip + rm SDL2-2.0.5-win32-x86.zip rm -path "$currentPath\windows\README-SDL.txt" }