From c4fca2aa614741f3d5bfef4eff039ae52c1a0a15 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Fri, 26 Sep 2014 08:53:19 +0200 Subject: playlist/embcue: change name string to "embcue" The name "cue" was listed twice in "mpd --version". --- src/playlist/EmbeddedCuePlaylistPlugin.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/playlist/EmbeddedCuePlaylistPlugin.cxx b/src/playlist/EmbeddedCuePlaylistPlugin.cxx index d758650eb..2734fa59e 100644 --- a/src/playlist/EmbeddedCuePlaylistPlugin.cxx +++ b/src/playlist/EmbeddedCuePlaylistPlugin.cxx @@ -171,7 +171,7 @@ static const char *const embcue_playlist_suffixes[] = { }; const struct playlist_plugin embcue_playlist_plugin = { - "cue", + "embcue", nullptr, nullptr, -- cgit v1.2.3 From 8bf46a665e4b4bd9d663351fbfb8ff47b59dfdd6 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Fri, 26 Sep 2014 09:00:58 +0200 Subject: configure.ac: add option to disable the DSD decoders Allow building a smaller MPD binary for people who don't need DSD. --- src/DecoderList.cxx | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src') diff --git a/src/DecoderList.cxx b/src/DecoderList.cxx index 834178260..4546cac2f 100644 --- a/src/DecoderList.cxx +++ b/src/DecoderList.cxx @@ -73,8 +73,10 @@ const struct DecoderPlugin *const decoder_plugins[] = { #ifdef HAVE_AUDIOFILE &audiofile_decoder_plugin, #endif +#ifdef ENABLE_DSD &dsdiff_decoder_plugin, &dsf_decoder_plugin, +#endif #ifdef HAVE_FAAD &faad_decoder_plugin, #endif -- cgit v1.2.3 From ef02b20811d362898285e4e48edc795684ae0ec7 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Fri, 26 Sep 2014 09:06:21 +0200 Subject: CommandLine: update copyright year --- src/CommandLine.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/CommandLine.cxx b/src/CommandLine.cxx index 05f0a358c..4bed5d531 100644 --- a/src/CommandLine.cxx +++ b/src/CommandLine.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2003-2013 The Music Player Daemon Project + * Copyright (C) 2003-2014 The Music Player Daemon Project * http://www.musicpd.org * * This program is free software; you can redistribute it and/or modify @@ -69,7 +69,7 @@ static void version(void) puts("Music Player Daemon " VERSION "\n" "\n" "Copyright (C) 2003-2007 Warren Dukes \n" - "Copyright (C) 2008-2013 Max Kellermann \n" + "Copyright (C) 2008-2014 Max Kellermann \n" "This is free software; see the source for copying conditions. There is NO\n" "warranty; not even MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n" "\n" -- cgit v1.2.3