From 7f5d83c0b3bc8a4697a10fef15de72e78c78b68e Mon Sep 17 00:00:00 2001 From: skobkin Date: Sun, 8 Dec 2024 17:32:58 +0000 Subject: [PATCH] Dropping patch since it's unnecessary now. --- patches/implicit_bool_cast.patch | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 patches/implicit_bool_cast.patch diff --git a/patches/implicit_bool_cast.patch b/patches/implicit_bool_cast.patch deleted file mode 100644 index ef20337..0000000 --- a/patches/implicit_bool_cast.patch +++ /dev/null @@ -1,14 +0,0 @@ -CRYPTO_get_locking_callback is defined as null in openssl -so this is always true, but it fails to compile on musl 1.2.3 -as casting from null to bool is invalid ---- a/src/SSL.cpp -+++ b/src/SSL.cpp -@@ -33,7 +33,7 @@ - // If we detect that no locking callback is configured, we - // have to set it up ourselves to allow multi-threaded use - // of OpenSSL. -- if (!CRYPTO_get_locking_callback()) { -+ if (true) { - SSLLocks::initialize(); - } - }