From b7255761e3dcf51781fd72a1fb69e407df7f3117 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthias=20Mail=C3=A4nder?= Date: Tue, 3 Mar 2015 21:38:40 +0100 Subject: [PATCH] downgrade to MSVC8 runtime dependency --- thirdparty/fetch-thirdparty-deps-windows.sh | 6 +++--- thirdparty/fetch-thirdparty-deps.ps1 | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/thirdparty/fetch-thirdparty-deps-windows.sh b/thirdparty/fetch-thirdparty-deps-windows.sh index 3a6ba42692..3306014557 100755 --- a/thirdparty/fetch-thirdparty-deps-windows.sh +++ b/thirdparty/fetch-thirdparty-deps-windows.sh @@ -23,9 +23,9 @@ fi if [ ! -f windows/lua51.dll ]; then echo "Fetching Lua 5.1 from nuget" - nuget install lua51.redist -Version 5.1.5 - cp ./lua51.redist.5.1.5/build/native/bin/Win32/v120/Release/lua5.1.dll ./windows/lua51.dll - rm -rf lua51.redist.5.1.5 + nuget install lua.binaries -Version 5.1.5 + cp ./lua.binaries.5.1.5/bin/win32/dll8/lua5.1.dll ./windows/lua51.dll + rm -rf lua.binaries.5.1.5 fi if [ ! -f windows/zlib1.dll ]; then diff --git a/thirdparty/fetch-thirdparty-deps.ps1 b/thirdparty/fetch-thirdparty-deps.ps1 index 58141855fd..f4d158e3bc 100644 --- a/thirdparty/fetch-thirdparty-deps.ps1 +++ b/thirdparty/fetch-thirdparty-deps.ps1 @@ -85,9 +85,9 @@ if (!(Test-Path "Mono.Nat.dll")) if (!(Test-Path "windows/lua51.dll")) { echo "Fetching Lua 5.1 from NuGet." - ./nuget.exe install lua51.redist -Version 5.1.5 - cp lua51.redist.5.1.5/build/native/bin/Win32/v120/Release/lua5.1.dll ./windows/lua51.dll - rmdir lua51.redist.5.1.5 -Recurse + ./nuget.exe install lua.binaries -Version 5.1.5 + cp lua.binaries.5.1.5/bin/win32/dll8/lua5.1.dll ./windows/lua51.dll + rmdir lua.binaries.5.1.5 -Recurse } if (!(Test-Path "windows/zlib1.dll"))