summaryrefslogtreecommitdiff
path: root/audio/kid3/patches/patch-ac
diff options
context:
space:
mode:
Diffstat (limited to 'audio/kid3/patches/patch-ac')
-rw-r--r--audio/kid3/patches/patch-ac23
1 files changed, 0 insertions, 23 deletions
diff --git a/audio/kid3/patches/patch-ac b/audio/kid3/patches/patch-ac
deleted file mode 100644
index 3c54b1f69e2..00000000000
--- a/audio/kid3/patches/patch-ac
+++ /dev/null
@@ -1,23 +0,0 @@
-$NetBSD: patch-ac,v 1.3 2008/07/30 08:49:18 obache Exp $
-
---- kid3/oggfile.cpp.orig 2008-02-18 20:01:40.000000000 +0000
-+++ kid3/oggfile.cpp
-@@ -34,6 +34,9 @@
- #if QT_VERSION >= 0x040000
- #include <QByteArray>
- #endif
-+#ifdef __NetBSD__
-+#include <sys/param.h>
-+#endif
- #include <sys/stat.h>
- #ifdef WIN32
- #include <sys/utime.h>
-@@ -811,7 +814,7 @@ bool OggFile::FileInfo::read(const char*
- bitrate = vi->bitrate_lower;
- }
- }
--#ifdef WIN32
-+#if defined(WIN32) || (defined(__NetBSD__) && __NetBSD_Version__ < 299000000)
- duration = (long)::ov_time_total(&vf, -1);
- #else
- duration = ::lrint(::ov_time_total(&vf, -1));