Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 873604 Details for
Bug 916439
mumble and murmur do not compile on musl they require a few patches first.
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
musl.patch (works for both murmur and mumble)
musl-1.2.3.patch (text/plain), 441 bytes, created by
Tohka
on 2023-10-28 16:54:54 UTC
(
hide
)
Description:
musl.patch (works for both murmur and mumble)
Filename:
MIME Type:
Creator:
Tohka
Created:
2023-10-28 16:54:54 UTC
Size:
441 bytes
patch
obsolete
>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(); > } > }
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 916439
: 873604 |
873605