summaryrefslogtreecommitdiff
path: root/audio/musicpd/patches
diff options
context:
space:
mode:
authorwiz <wiz>2011-04-04 08:51:34 +0000
committerwiz <wiz>2011-04-04 08:51:34 +0000
commit21245f5a0fc8ec4b8de17ca78a00dc24c1cb0ba4 (patch)
treee57421ec6c07d5cbce7c91216f66c80f217b2572 /audio/musicpd/patches
parent0b71ef8ae3b35dd680cc5015e04aa3220384ce8c (diff)
downloadpkgsrc-21245f5a0fc8ec4b8de17ca78a00dc24c1cb0ba4.tar.gz
Update to 0.16.2, from Matthias Rampke in PR 44821.
ver 0.16.2 (2011/03/18) * configure.ac: - fix bashism in tremor test * decoder: - tremor: fix configure test - gme: detect end of song * encoder: - vorbis: reset the Ogg stream after flush * output: - httpd: fix uninitialized variable - httpd: include sys/socket.h - oss: AFMT_S24_PACKED is little-endian - oss: disable 24 bit playback on FreeBSD
Diffstat (limited to 'audio/musicpd/patches')
-rw-r--r--audio/musicpd/patches/patch-ac15
-rw-r--r--audio/musicpd/patches/patch-configure15
2 files changed, 0 insertions, 30 deletions
diff --git a/audio/musicpd/patches/patch-ac b/audio/musicpd/patches/patch-ac
deleted file mode 100644
index 0e04cff5b88..00000000000
--- a/audio/musicpd/patches/patch-ac
+++ /dev/null
@@ -1,15 +0,0 @@
-$NetBSD: patch-ac,v 1.4 2011/02/27 10:42:14 wiz Exp $
-
-Initialise structure.
-
---- src/output/ao_plugin.c.orig 2010-12-11 12:17:51.000000000 +0000
-+++ src/output/ao_plugin.c
-@@ -170,6 +170,8 @@ ao_output_open(void *data, struct audio_
- ao_sample_format format;
- struct ao_data *ad = (struct ao_data *)data;
-
-+ memset(&format, 0, sizeof(format));
-+
- switch (audio_format->format) {
- case SAMPLE_FORMAT_S8:
- format.bits = 8;
diff --git a/audio/musicpd/patches/patch-configure b/audio/musicpd/patches/patch-configure
deleted file mode 100644
index ad96f9096b1..00000000000
--- a/audio/musicpd/patches/patch-configure
+++ /dev/null
@@ -1,15 +0,0 @@
-$NetBSD: patch-configure,v 1.1 2011/02/27 10:42:14 wiz Exp $
-
-Unportable test(1) construct.
-
---- configure.orig 2011-02-26 16:48:03.000000000 +0000
-+++ configure
-@@ -7783,7 +7783,7 @@ else
- fi
-
-
--if test x$with_tremor == xno || test -z $with_tremor; then
-+if test x$with_tremor = xno || test -z $with_tremor; then
-
- pkg_failed=no
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for OGG" >&5