summaryrefslogtreecommitdiffstats
path: root/network/mumble/boost-1.66.patch
diff options
context:
space:
mode:
author Matteo Bernardini2018-08-11 08:22:49 +0200
committer Matteo Bernardini2018-08-11 08:22:49 +0200
commit5b9e2bacbba98d29e840b18893dd5b5f07e4e256 (patch)
tree13f6929744b6579f61d56d2983cf04c686198db9 /network/mumble/boost-1.66.patch
parent4b6783ab8163804672754dd5c659308957e9133e (diff)
downloadslackbuilds-5b9e2bacbba98d29e840b18893dd5b5f07e4e256.tar.gz
20180811.1 global branch merge.current-20180811.1
Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
Diffstat (limited to 'network/mumble/boost-1.66.patch')
-rw-r--r--network/mumble/boost-1.66.patch32
1 files changed, 32 insertions, 0 deletions
diff --git a/network/mumble/boost-1.66.patch b/network/mumble/boost-1.66.patch
new file mode 100644
index 0000000000..cf61106ce6
--- /dev/null
+++ b/network/mumble/boost-1.66.patch
@@ -0,0 +1,32 @@
+From ea861fe86743c8402bbad77d8d1dd9de8dce447e Mon Sep 17 00:00:00 2001
+From: Mikkel Krautz <mikkel@krautz.dk>
+Date: Fri, 29 Dec 2017 14:47:25 +0100
+Subject: [PATCH] AudioOutput: do not use non-existant template version of
+ std::abs.
+
+This change fixes AudioOutput to use the float overload of std::abs:
+
+ float std::abs(float);
+
+instead of a non-existant template version.
+
+Fixes mumble-voip/mumble#3281
+
+Needs-Backport: 1.2.x
+---
+ src/mumble/AudioOutput.cpp | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/src/mumble/AudioOutput.cpp b/src/mumble/AudioOutput.cpp
+index cbe0c0e2b..7a0a5e2ab 100644
+--- a/src/mumble/AudioOutput.cpp
++++ b/src/mumble/AudioOutput.cpp
+@@ -437,7 +437,7 @@ bool AudioOutput::mix(void *outbuff, unsigned int nsamp) {
+ top[2] = 0.0f;
+ }
+
+- if (std::abs<float>(front[0] * top[0] + front[1] * top[1] + front[2] * top[2]) > 0.01f) {
++ if (std::abs(front[0] * top[0] + front[1] * top[1] + front[2] * top[2]) > 0.01f) {
+ // Not perpendicular. Assume Y up and rotate 90 degrees.
+
+ float azimuth = 0.0f;