diff --git a/Installer/copy_build.cmd b/Installer/copy_build.cmd index 06a3e06e..509423f5 100644 --- a/Installer/copy_build.cmd +++ b/Installer/copy_build.cmd @@ -50,12 +50,12 @@ ECHO Copying OpenSSL libs rem copy /y %~dp0OpenSSL\%archPath%\libeay32.dll %instPath%\ rem copy /y %~dp0OpenSSL\%archPath%\ssleay32.dll %instPath%\ IF %archPath% == Win32 ( - copy /y %~dp0OpenSSL\openssl-1.1.0h-x32-VC2017\libssl-1_1.dll %instPath%\ - copy /y %~dp0OpenSSL\openssl-1.1.0h-x32-VC2017\libcrypto-1_1.dll %instPath%\ + copy /y %~dp0OpenSSL\Win32\libssl-1_1.dll %instPath%\ + copy /y %~dp0OpenSSL\Win32\libcrypto-1_1.dll %instPath%\ ) IF %archPath% == x64 ( - copy /y %~dp0OpenSSL\openssl-1.1.0h-x64-VC2017\libssl-1_1-x64.dll %instPath%\ - copy /y %~dp0OpenSSL\openssl-1.1.0h-x64-VC2017\libcrypto-1_1-x64.dll %instPath%\ + copy /y %~dp0OpenSSL\x64\libssl-1_1-x64.dll %instPath%\ + copy /y %~dp0OpenSSL\x64\libcrypto-1_1-x64.dll %instPath%\ ) rem for openssl copy %sysPath%\msvcr100.dll %instPath%\ diff --git a/Installer/get_openssl.cmd b/Installer/get_openssl.cmd index 23370878..65c662ef 100644 --- a/Installer/get_openssl.cmd +++ b/Installer/get_openssl.cmd @@ -1,8 +1,8 @@ mkdir %~dp0\OpenSSL -curl --ssl-no-revoke -L https://indy.fulgan.com/SSL/Archive/Experimental/openssl-1.1.0h-x64-VC2017.zip -o %~dp0\OpenSSL\openssl-1.1.0h-x64-VC2017.zip -"C:\Program Files\7-Zip\7z.exe" x -o%~dp0\OpenSSL\ %~dp0\OpenSSL\openssl-1.1.0h-x64-VC2017.zip +curl --ssl-no-revoke -L http://wiki.overbyte.eu/arch/openssl-1.1.1i-win64.zip -o %~dp0\OpenSSL\openssl-1.1.1i-win64.zip +"C:\Program Files\7-Zip\7z.exe" x -o%~dp0\OpenSSL\x64\ %~dp0\OpenSSL\openssl-1.1.1i-win64.zip -curl --ssl-no-revoke -L https://indy.fulgan.com/SSL/Archive/Experimental/openssl-1.1.0h-x32-VC2017.zip -o %~dp0\OpenSSL\openssl-1.1.0h-x32-VC2017.zip -"C:\Program Files\7-Zip\7z.exe" x -o%~dp0\OpenSSL\ %~dp0\OpenSSL\openssl-1.1.0h-x32-VC2017.zip +curl --ssl-no-revoke -L http://wiki.overbyte.eu/arch/openssl-1.1.1i-win32.zip -o %~dp0\OpenSSL\openssl-1.1.1i-win32.zip +"C:\Program Files\7-Zip\7z.exe" x -o%~dp0\OpenSSL\Win32\ %~dp0\OpenSSL\openssl-1.1.1i-win32.zip