summaryrefslogtreecommitdiff
path: root/audio/libofa/patches
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2006-07-12 13:12:57 +0000
committerwiz <wiz@pkgsrc.org>2006-07-12 13:12:57 +0000
commit4ce77e4c287cfedeb85698dc9ca85e61eda02b22 (patch)
tree03c757d444d91468c81964b9e3f30c2d9e95e13e /audio/libofa/patches
parentc4aa31d6c887dd256b8d089f0a5bfe7c59ed0f61 (diff)
downloadpkgsrc-4ce77e4c287cfedeb85698dc9ca85e61eda02b22.tar.gz
Initial import of libofa-0.9.3:
The world is drowning in individual music files astray with corrupt metadata, insignificant file names, and no way to identify the music. MusicDNS and the Open Fingerprint Architecture provide a system for identifying a piece of music with nothing more than the sound of the piece itself. MusicDNS is the largest single dataset of acoustic fingerprints in the world with more than 16 million individual tracks identified and growing DAILY! With the Open Fingerprint client-code, tracks can be identified consistently against the MusicDNS dataset, and new tracks are easily added. The Open Fingerprint is deployed world-wide--and now the client source code is available under Open Source license. Use the fingerprint code freely, or hook it up to the largest repository of fingerprinted tracks on the planet--MusicDNS. Free client keys for developers and non-profits are available on the website. For commercial deployment, use the low-cost MusicDNS.com service from MusicIP.
Diffstat (limited to 'audio/libofa/patches')
-rw-r--r--audio/libofa/patches/patch-aa13
1 files changed, 13 insertions, 0 deletions
diff --git a/audio/libofa/patches/patch-aa b/audio/libofa/patches/patch-aa
new file mode 100644
index 00000000000..4e73408d920
--- /dev/null
+++ b/audio/libofa/patches/patch-aa
@@ -0,0 +1,13 @@
+$NetBSD: patch-aa,v 1.1.1.1 2006/07/12 13:12:57 wiz Exp $
+
+--- lib/JAMA/tnt_math_utils.h.orig 2006-05-10 17:58:50.000000000 +0000
++++ lib/JAMA/tnt_math_utils.h
+@@ -30,7 +30,7 @@ Real hypot(const Real &a, const Real &b)
+ {
+
+ if (a== 0)
+- return abs(b);
++ return fabs(b);
+ else
+ {
+ Real c = b/a;