summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Palimaka <kensington@gentoo.org>2012-12-12 14:02:43 +0000
committerMichael Palimaka <kensington@gentoo.org>2012-12-12 14:02:43 +0000
commit6dacec96553d2dcce4aeb9c8bef32789a5c2fc38 (patch)
tree3dd9b9ef63b211346e1b80fa98eb4fb41dfd6f07 /media-libs/phonon/files
parenttwelf does not depend on omake. subslot dep in case any future ebuild depends... (diff)
downloadhistorical-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.patch27
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));
- }
- }
-