From e10990125dff43f7e3736ca35ad70289eee01be1 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Alexander=20K=C3=B6plinger?= Date: Wed, 1 Apr 2020 12:35:27 +0200 Subject: [PATCH] Fix Windows .msi build with recent cygwin updates Cygwin now ships libssl 1.1 which removed OpenSSL_add_all_ciphers so the xar configure fails. Replace the configure check with another existing function to fix it. --- packaging/Windows/defs/managed-components | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packaging/Windows/defs/managed-components b/packaging/Windows/defs/managed-components index 1ec18d40ba8..796ca3e62bd 100755 --- a/packaging/Windows/defs/managed-components +++ b/packaging/Windows/defs/managed-components @@ -50,6 +50,8 @@ build() mkdir -p xar tar xf xar.tar.gz -C xar/ --strip-components=1 pushd xar/ + report "Patching xar configure for compatibility with openssl 1.1" + sed -i 's/OpenSSL_add_all_ciphers/OPENSSL_init_crypto/g' configure ./configure make popd -- 2.11.4.GIT