diff options
author | wiz <wiz@pkgsrc.org> | 2015-01-18 17:36:21 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2015-01-18 17:36:21 +0000 |
commit | be14cbd3899ebce2388d129ed272803d29379492 (patch) | |
tree | faf3d9d39dc4b015e8d97e9341b2bce70aa27db4 | |
parent | 54b101de5aba73afb89cb9ed74f30983e2d163dc (diff) | |
download | pkgsrc-be14cbd3899ebce2388d129ed272803d29379492.tar.gz |
Update to 0.19.8:
ver 0.19.8 (2015/01/14)
* input
- curl: fix bug after rewinding from end-of-file
- mms: reduce delay at the beginning of playback
* decoder
- dsdiff, dsf: allow ID3 tags larger than 4 kB
- ffmpeg: support interleaved floating point
* fix clang 3.6 warnings
* fix build failure on NetBSD
-rw-r--r-- | audio/musicpd/Makefile | 4 | ||||
-rw-r--r-- | audio/musicpd/distinfo | 9 | ||||
-rw-r--r-- | audio/musicpd/patches/patch-src_thread_Name.hxx | 21 |
3 files changed, 6 insertions, 28 deletions
diff --git a/audio/musicpd/Makefile b/audio/musicpd/Makefile index fab8bd12f47..7551a3bc91f 100644 --- a/audio/musicpd/Makefile +++ b/audio/musicpd/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.99 2015/01/05 22:19:02 wiz Exp $ +# $NetBSD: Makefile,v 1.100 2015/01/18 17:36:21 wiz Exp $ -DISTNAME= mpd-0.19.7 +DISTNAME= mpd-0.19.8 PKGNAME= ${DISTNAME:S/mpd/musicpd/} CATEGORIES= audio MASTER_SITES= http://www.musicpd.org/download/mpd/0.19/ diff --git a/audio/musicpd/distinfo b/audio/musicpd/distinfo index 6c486c1415c..1f23c5230fb 100644 --- a/audio/musicpd/distinfo +++ b/audio/musicpd/distinfo @@ -1,6 +1,5 @@ -$NetBSD: distinfo,v 1.55 2015/01/05 22:19:02 wiz Exp $ +$NetBSD: distinfo,v 1.56 2015/01/18 17:36:21 wiz Exp $ -SHA1 (mpd-0.19.7.tar.xz) = 6f67d8ac14881c2d72c2907c2c1e14c6b2fd04c5 -RMD160 (mpd-0.19.7.tar.xz) = a3e87425945378a48b537ad2eb00c14af0f29c13 -Size (mpd-0.19.7.tar.xz) = 704040 bytes -SHA1 (patch-src_thread_Name.hxx) = 74638b3f4984415b8890e23cd06754e240e9bebd +SHA1 (mpd-0.19.8.tar.xz) = e5e325b666474bddec6c07502fa2dcf3710a42e3 +RMD160 (mpd-0.19.8.tar.xz) = eec522d7a2ba4b91c0d7e2ca44bce3a14313a69d +Size (mpd-0.19.8.tar.xz) = 705108 bytes diff --git a/audio/musicpd/patches/patch-src_thread_Name.hxx b/audio/musicpd/patches/patch-src_thread_Name.hxx deleted file mode 100644 index 19d0f08740c..00000000000 --- a/audio/musicpd/patches/patch-src_thread_Name.hxx +++ /dev/null @@ -1,21 +0,0 @@ -$NetBSD: patch-src_thread_Name.hxx,v 1.1 2015/01/05 22:19:02 wiz Exp $ - -http://bugs.musicpd.org/view.php?id=4266 - -Still gives: -In file included from src/IOThread.cxx:25:0: -src/thread/Name.hxx: In function 'void SetThreadName(const char*)': -src/thread/Name.hxx:37:51: warning: cast from type 'const char*' to type 'void*' casts away qualifiers [-Wcast-qual] - pthread_setname_np(pthread_self(), "%s", (void *)name); - ^ ---- src/thread/Name.hxx.orig 2014-10-24 22:28:53.000000000 +0000 -+++ src/thread/Name.hxx -@@ -33,6 +33,8 @@ SetThreadName(const char *name) - #ifdef HAVE_PTHREAD_SETNAME_NP - #ifdef __APPLE__ - pthread_setname_np(name); -+#elif defined(__NetBSD__) -+ pthread_setname_np(pthread_self(), "%s", (void *)name); - #else - pthread_setname_np(pthread_self(), name); - #endif |