class Mpd < Formula desc "Music Player Daemon" homepage "http://www.musicpd.org/" stable do url "http://www.musicpd.org/download/mpd/0.19/mpd-0.19.14.tar.xz" sha256 "2fd23805132e5002a4d24930001a7c7d3aaf55e3bd0cd71af5385895160e99e7" # Fixes build because of missing patch on 0.19 branch patch :DATA end bottle do cellar :any sha256 "a7f6e97ea94a2733006cff806c6cb7da3ab547ef75f9d52e4c92f6c22c5d5b3d" => :el_capitan sha256 "a6798fb18a9b1e9e1443d236c9e9cf272a94acc32579c014d6a373c258d8d872" => :yosemite sha256 "c029531f025af9e712b7b2108e81d14406c4394c46e8789ee1b9e6d13a36d22f" => :mavericks end head do url "git://git.musicpd.org/master/mpd.git" depends_on "autoconf" => :build depends_on "automake" => :build end option "with-wavpack", "Build with wavpack support (for .wv files)" option "with-lastfm", "Build with last-fm support (for experimental Last.fm radio)" option "with-lame", "Build with lame support (for MP3 encoding when streaming)" option "with-two-lame", "Build with two-lame support (for MP2 encoding when streaming)" option "with-flac", "Build with flac support (for Flac encoding when streaming)" option "with-libvorbis", "Build with vorbis support (for Ogg encoding)" option "with-yajl", "Build with yajl support (for playing from soundcloud)" option "with-opus", "Build with opus support (for Opus encoding and decoding)" deprecated_option "with-vorbis" => "with-libvorbis" depends_on "pkg-config" => :build depends_on "boost" => :build depends_on "glib" depends_on "libid3tag" depends_on "sqlite" depends_on "libsamplerate" depends_on "icu4c" needs :cxx11 depends_on "libmpdclient" depends_on "ffmpeg" # lots of codecs # mpd also supports mad, mpg123, libsndfile, and audiofile, but those are # redundant with ffmpeg depends_on "fluid-synth" # MIDI depends_on "faad2" # MP4/AAC depends_on "wavpack" => :optional # WavPack depends_on "libshout" => :optional # Streaming (also pulls in Vorbis encoding) depends_on "lame" => :optional # MP3 encoding depends_on "two-lame" => :optional # MP2 encoding depends_on "flac" => :optional # Flac encoding depends_on "jack" => :optional # Output to JACK depends_on "libmms" => :optional # MMS input depends_on "libzzip" => :optional # Reading from within ZIPs depends_on "yajl" => :optional # JSON library for SoundCloud depends_on "opus" => :optional # Opus support depends_on "libvorbis" => :optional depends_on "libnfs" => :optional depends_on "mad" => :optional def install # mpd specifies -std=gnu++0x, but clang appears to try to build # that against libstdc++ anyway, which won't work. # The build is fine with G++. ENV.libcxx system "./autogen.sh" if build.head? args = %W[ --disable-debug --disable-dependency-tracking --prefix=#{prefix} --sysconfdir=#{etc} --enable-bzip2 --enable-ffmpeg --enable-fluidsynth --enable-osx --disable-libwrap ] args << "--disable-mad" if build.without? "mad" args << "--disable-curl" if MacOS.version <= :leopard args << "--enable-zzip" if build.with? "libzzip" args << "--enable-lastfm" if build.with? "lastfm" args << "--disable-lame-encoder" if build.without? "lame" args << "--disable-soundcloud" if build.without? "yajl" args << "--enable-vorbis-encoder" if build.with? "libvorbis" args << "--enable-nfs" if build.with? "libnfs" system "./configure", *args system "make" ENV.j1 # Directories are created in parallel, so let's not do that system "make", "install" (etc/"mpd").install "doc/mpdconf.example" => "mpd.conf" end plist_options :manual => "mpd" def plist; <<-EOS.undent Label #{plist_name} WorkingDirectory #{HOMEBREW_PREFIX} ProgramArguments #{opt_bin}/mpd --no-daemon RunAtLoad KeepAlive EOS end test do pid = fork do exec "#{bin}/mpd --stdout --no-daemon --no-config" end sleep 2 begin assert_match "OK MPD", shell_output("curl localhost:6600") ensure Process.kill "SIGINT", pid Process.wait pid end end end __END__ diff --git a/src/notify.hxx b/src/notify.hxx index 3e62a01..c96390b 100644 --- a/src/notify.hxx +++ b/src/notify.hxx @@ -28,7 +28,7 @@ struct notify { Cond cond; bool pending; -#if !defined(WIN32) && !defined(__NetBSD__) && !defined(__BIONIC__) +#ifdef __GLIBC__ constexpr #endif notify():pending(false) {}