summaryrefslogtreecommitdiffstats
path: root/libc-musl/patches
diff options
context:
space:
mode:
authorWolfgang Müller2024-10-26 10:13:44 +0000
committerWolfgang Müller2024-10-26 10:14:46 +0000
commit8947c396a75438b0343722f7457bfb6547d3ffb6 (patch)
treef970e4483e199d938f2811162e2c44d80814c906 /libc-musl/patches
parent0e2109b1b41785535a59b7876f2f48e775bdd566 (diff)
downloadportage-roles-8947c396a75438b0343722f7457bfb6547d3ffb6.tar.gz
libc-musl: Drop obsolete patch for net-voip/murmur
This has been merged upstream in [1] [1] https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=548578455900b398c0c0832506f0d8ec0f218dee
Diffstat (limited to 'libc-musl/patches')
-rw-r--r--libc-musl/patches/net-voip/murmur-1.5.634/crypto-get-locking-callback-fix.patch14
1 files changed, 0 insertions, 14 deletions
diff --git a/libc-musl/patches/net-voip/murmur-1.5.634/crypto-get-locking-callback-fix.patch b/libc-musl/patches/net-voip/murmur-1.5.634/crypto-get-locking-callback-fix.patch
deleted file mode 100644
index ef20337..0000000
--- a/libc-musl/patches/net-voip/murmur-1.5.634/crypto-get-locking-callback-fix.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();
- }
- }