mumble: update to 1.5.735.
This commit is contained in:
parent
25f2e01cc0
commit
c5a875e961
@ -1,14 +0,0 @@
|
||||
Newer musl expands NULL to nullptr, which is not a bool.
|
||||
Either way, the check is always true with openssl 1.1+, so it can probably removed alltogether
|
||||
---
|
||||
--- mumble-1.4.287/src/SSL.cpp 2022-09-13 19:24:40.000000000 +0200
|
||||
+++ - 2023-02-07 22:18:16.093759105 +0100
|
||||
@@ -33,7 +34,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 (CRYPTO_get_locking_callback() == NULL) {
|
||||
SSLLocks::initialize();
|
||||
}
|
||||
}
|
@ -1,6 +1,6 @@
|
||||
# Template file for 'mumble'
|
||||
pkgname=mumble
|
||||
version=1.5.634
|
||||
version=1.5.735
|
||||
revision=1
|
||||
build_style=cmake
|
||||
make_cmd=make
|
||||
@ -20,7 +20,7 @@ maintainer="Helmut Pozimski <helmut@pozimski.eu>"
|
||||
license="BSD-3-Clause"
|
||||
homepage="https://mumble.info"
|
||||
distfiles="https://github.com/mumble-voip/${pkgname}/releases/download/v${version}/${pkgname}-${version}.tar.gz"
|
||||
checksum=904f3633d28ab0e6925caeff2c65802f586abefdf6d20162f20a71805c2c5929
|
||||
checksum=db8990079f556a877218d471bcf2c24eb5e4520b652f3c20793d0aadedaae6ae
|
||||
|
||||
build_options="jack portaudio"
|
||||
build_options_default="jack portaudio"
|
||||
|
Loading…
Reference in New Issue
Block a user