aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorMichael Paquier2014-11-11 21:21:12 +0900
committerMike McQuaid2014-11-11 12:36:04 +0000
commit98d128614ba4f55ecde3c02dffdf805959ccb9a4 (patch)
treefe0ad4d837f810f30a571b5317764cf7c9936a5e /Library
parent9fd0852bf097772788238ec3a3ea5c52956c1e66 (diff)
downloadhomebrew-98d128614ba4f55ecde3c02dffdf805959ccb9a4.tar.bz2
mpd 0.19.3
This is a bugfix release, with the following things fixed: * fix build failure on Mac OS X with non-Apple compilers * protocol - fix "(null)" result string to "list" when AlbumArtist is disabled * database - upnp: fix breakage due to malformed URIs * input - curl: another fix for redirected streams * decoder - audiofile: fix crash while playing streams - audiofile: fix bit rate calculation - ffmpeg: support opus - opus: fix bogus duration on streams - opus: support chained streams - opus: improved error logging * fix distorted audio with soxr resampler Closes #34095. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/mpd.rb32
1 files changed, 2 insertions, 30 deletions
diff --git a/Library/Formula/mpd.rb b/Library/Formula/mpd.rb
index 1a3cfae3e..d2352c8d1 100644
--- a/Library/Formula/mpd.rb
+++ b/Library/Formula/mpd.rb
@@ -4,12 +4,8 @@ class Mpd < Formula
homepage "http://www.musicpd.org/"
stable do
- url "http://www.musicpd.org/download/mpd/0.19/mpd-0.19.2.tar.xz"
- sha1 "47616949d1617f467c31fb10df8ddd5a5c4ddc84"
-
- # Fixes build with non-Apple GCCs; merged upstream:
- # http://git.musicpd.org/cgit/master/mpd.git/commit/?h=v0.19.x&id=134cb6a0171192b7d621697f84196ce670a3ce21
- patch :DATA
+ url "http://www.musicpd.org/download/mpd/0.19/mpd-0.19.3.tar.xz"
+ sha1 "2027ea7c379e045dec6cddfe0ccef341fe00c387"
end
bottle do
@@ -121,27 +117,3 @@ class Mpd < Formula
EOS
end
end
-
-__END__
-diff --git a/src/Main.cxx b/src/Main.cxx
-index 2719c05..26d4e7a 100644
---- a/src/Main.cxx
-+++ b/src/Main.cxx
-@@ -114,7 +114,7 @@
- #include <ws2tcpip.h>
- #endif
-
--#ifdef __APPLE__
-+#ifdef __BLOCKS__
- #include <dispatch/dispatch.h>
- #endif
-
-@@ -517,7 +517,7 @@ int mpd_main(int argc, char *argv[])
- daemonize_begin(options.daemon);
- #endif
-
--#ifdef __APPLE__
-+#ifdef __BLOCKS__
- /* Runs the OS X native event loop in the main thread, and runs
- the rest of mpd_main on a new thread. This lets CoreAudio receive
- route change notifications (e.g. plugging or unplugging headphones).