From b273da0b5e92115f9bd2635c5eef397fb5256d71 Mon Sep 17 00:00:00 2001 From: Jonas Kvinge Date: Fri, 20 Sep 2019 18:49:53 +0200 Subject: [PATCH] Switch to openssl 1.1 in nsi --- dist/windows/strawberry.nsi.in | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/dist/windows/strawberry.nsi.in b/dist/windows/strawberry.nsi.in index 2a003f102..af32087a7 100644 --- a/dist/windows/strawberry.nsi.in +++ b/dist/windows/strawberry.nsi.in @@ -227,14 +227,14 @@ Section "Strawberry" Strawberry !ifdef arch_x86 File "libgcc_s_sjlj-1.dll" - File "libcrypto-3.dll" - File "libssl-3.dll" + File "libcrypto-1_1.dll" + File "libssl-1_1.dll" !endif !ifdef arch_x64 File "libgcc_s_seh-1.dll" - File "libcrypto-3-x64.dll" - File "libssl-3-x64.dll" + File "libcrypto-1_1-x64.dll" + File "libssl-1_1-x64.dll" !endif !ifdef debug @@ -503,14 +503,14 @@ Section "Uninstall" !ifdef arch_x86 Delete "$INSTDIR\libgcc_s_sjlj-1.dll" - Delete "$INSTDIR\libcrypto-3.dll" - Delete "$INSTDIR\libssl-3.dll" + Delete "$INSTDIR\libcrypto-1_1.dll" + Delete "$INSTDIR\libssl-1_1.dll" !endif !ifdef arch_x64 Delete "$INSTDIR\libgcc_s_seh-1.dll" - Delete "$INSTDIR\libcrypto-3-x64.dll" - Delete "$INSTDIR\libssl-3-x64.dll" + Delete "$INSTDIR\libcrypto-1_1-x64.dll" + Delete "$INSTDIR\libssl-1_1-x64.dll" !endif !ifdef debug