diff options
author | Michael Palimaka <kensington@gentoo.org> | 2012-12-12 14:02:43 +0000 |
---|---|---|
committer | Michael Palimaka <kensington@gentoo.org> | 2012-12-12 14:02:43 +0000 |
commit | 6dacec96553d2dcce4aeb9c8bef32789a5c2fc38 (patch) | |
tree | 3dd9b9ef63b211346e1b80fa98eb4fb41dfd6f07 /media-libs/phonon/files | |
parent | twelf does not depend on omake. subslot dep in case any future ebuild depends... (diff) | |
download | historical-6dacec96553d2dcce4aeb9c8bef32789a5c2fc38.tar.gz historical-6dacec96553d2dcce4aeb9c8bef32789a5c2fc38.tar.bz2 historical-6dacec96553d2dcce4aeb9c8bef32789a5c2fc38.zip |
Remove old.
Package-Manager: portage-2.1.11.37/cvs/Linux x86_64
Manifest-Sign-Key: 0x675D0D2C
Diffstat (limited to 'media-libs/phonon/files')
-rw-r--r-- | media-libs/phonon/files/phonon-4.5.0-pow.patch | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/media-libs/phonon/files/phonon-4.5.0-pow.patch b/media-libs/phonon/files/phonon-4.5.0-pow.patch deleted file mode 100644 index 0111a20412ae..000000000000 --- a/media-libs/phonon/files/phonon-4.5.0-pow.patch +++ /dev/null @@ -1,27 +0,0 @@ -commit 436d5379abe83c53c652d8a251f7ab504a1523df -Author: Colin Guthrie <colin@mageia.org> -Date: Thu Aug 4 16:55:47 2011 +0100 - - pulse: Use qPow() as pow() is sometimes not found. - -diff --git a/phonon/pulsestream.cpp b/phonon/pulsestream.cpp -index d1e6711..e129f1b 100644 ---- a/phonon/pulsestream.cpp -+++ b/phonon/pulsestream.cpp -@@ -21,6 +21,7 @@ - */ - - #include "pulsestream_p.h" -+#include <QtCore/qmath.h> - - QT_BEGIN_NAMESPACE - -@@ -81,7 +82,7 @@ void PulseStream::setVolume(const pa_cvolume *volume) - // AudioOutput expects the "backend" to supply values that have been - // adjusted for Stephens' law, so we need to fudge them accordingly - // so that the %ages match up in KMix/the application's own slider. -- emit volumeChanged(pow(vol, VOLTAGE_TO_LOUDNESS_EXPONENT)); -+ emit volumeChanged(qPow(vol, VOLTAGE_TO_LOUDNESS_EXPONENT)); - } - } - |