diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2012-02-05 11:54:47 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2012-02-05 13:55:43 +0000 |
commit | 16d1833af538b69393fcd8723c91c11d5381ba44 (patch) | |
tree | 1b93c45417bec38e3afa36a71e46b3df04184002 /testing/rosegarden/nearbyintf.patch | |
parent | 20a1a617a0ab9b9eb57ed6e8dd8f50dce7fb5bc6 (diff) | |
download | aports-16d1833af538b69393fcd8723c91c11d5381ba44.tar.bz2 aports-16d1833af538b69393fcd8723c91c11d5381ba44.tar.xz |
testing/rosegarden: new aport
MIDI, audio and notation editor
http://www.rosegardenmusic.com/
Diffstat (limited to 'testing/rosegarden/nearbyintf.patch')
-rw-r--r-- | testing/rosegarden/nearbyintf.patch | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/testing/rosegarden/nearbyintf.patch b/testing/rosegarden/nearbyintf.patch new file mode 100644 index 0000000000..d8d2a706e2 --- /dev/null +++ b/testing/rosegarden/nearbyintf.patch @@ -0,0 +1,13 @@ +uclibc does not have nearbyintf + +--- ./src/gui/widgets/Fader.cpp.orig ++++ ./src/gui/widgets/Fader.cpp +@@ -222,7 +222,7 @@ + if (m_integral) { + float sliderLength = float(m_sliderMax) - float(m_sliderMin); + position = +- int(nearbyintf(sliderLength * (value - float(m_min)) / float(m_max - m_min) + 0.1)); ++ int(nearbyint(sliderLength * (value - float(m_min)) / float(m_max - m_min) + 0.1)); + } else { + position = + AudioLevel::dB_to_fader |