diff options
author | drochner <drochner@pkgsrc.org> | 2013-10-01 15:21:44 +0000 |
---|---|---|
committer | drochner <drochner@pkgsrc.org> | 2013-10-01 15:21:44 +0000 |
commit | ff7f63abb47afe151716267035cd7d83f1f79013 (patch) | |
tree | fa52b3ae3df9fc31c961e5df327a750c1d8e2e66 /audio/musicpd/patches | |
parent | 4ef1e4a61a45930ca9dae36178ad0f56cab2d85c (diff) | |
download | pkgsrc-ff7f63abb47afe151716267035cd7d83f1f79013.tar.gz |
update to 0.17.5
It fixes two protocol bugs and a crash in the mikmod decoder plugin.
pkgsrc note: updated the sample config file for current reality
Diffstat (limited to 'audio/musicpd/patches')
-rw-r--r-- | audio/musicpd/patches/patch-aa | 16 | ||||
-rw-r--r-- | audio/musicpd/patches/patch-ad | 16 | ||||
-rw-r--r-- | audio/musicpd/patches/patch-ae | 13 |
3 files changed, 0 insertions, 45 deletions
diff --git a/audio/musicpd/patches/patch-aa b/audio/musicpd/patches/patch-aa deleted file mode 100644 index 2febea924c2..00000000000 --- a/audio/musicpd/patches/patch-aa +++ /dev/null @@ -1,16 +0,0 @@ -$NetBSD: patch-aa,v 1.12 2013/05/26 18:37:39 wiz Exp $ - -fix misuse of "bool", should fix build with some compilers, from -Pouya D. Tafti per pkgsrc-users - ---- src/conf.c.orig 2012-08-13 14:55:06.000000000 +0900 -+++ src/conf.c -@@ -317,7 +317,7 @@ config_read_block(FILE *fp, int *count, - g_set_error(error_r, config_quark(), 0, - "line %i: Unknown tokens after '}'", - *count); -- return false; -+ return NULL; - } - - return ret; diff --git a/audio/musicpd/patches/patch-ad b/audio/musicpd/patches/patch-ad deleted file mode 100644 index a22bb34c627..00000000000 --- a/audio/musicpd/patches/patch-ad +++ /dev/null @@ -1,16 +0,0 @@ -$NetBSD: patch-ad,v 1.4 2013/05/26 18:37:39 wiz Exp $ - -fix misuse of "bool", should fix build with some compilers, from -Pouya D. Tafti per pkgsrc-users - ---- src/song_update.c.orig 2012-06-28 00:46:58.000000000 +0900 -+++ src/song_update.c -@@ -187,7 +187,7 @@ song_file_update_inarchive(struct song * - if (suffix == NULL) - return false; - -- plugin = decoder_plugin_from_suffix(suffix, false); -+ plugin = decoder_plugin_from_suffix(suffix, NULL); - if (plugin == NULL) - return false; - diff --git a/audio/musicpd/patches/patch-ae b/audio/musicpd/patches/patch-ae deleted file mode 100644 index 12271535d68..00000000000 --- a/audio/musicpd/patches/patch-ae +++ /dev/null @@ -1,13 +0,0 @@ -$NetBSD: patch-ae,v 1.3 2013/05/27 10:27:02 drochner Exp $ - ---- src/update_song.c.orig 2012-12-20 12:56:41.000000000 +0000 -+++ src/update_song.c -@@ -104,7 +104,7 @@ update_song_file(struct directory *direc - const struct stat *st) - { - const struct decoder_plugin *plugin = -- decoder_plugin_from_suffix(suffix, false); -+ decoder_plugin_from_suffix(suffix, NULL); - if (plugin == NULL) - return false; - |