aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2014-12-07 17:14:19 +0100
committerMax Kellermann <max@duempel.org>2014-12-07 17:14:19 +0100
commitc7da1821c35e27b357f33e003fdb08d65f4cb392 (patch)
tree2680100b0c434cf468f7464714b19b0aa0a04834
parent1a8c3271da3e80d28d892f6c92f647df2534c0b6 (diff)
downloadmpd-c7da1821c35e27b357f33e003fdb08d65f4cb392.tar.gz
mpd-c7da1821c35e27b357f33e003fdb08d65f4cb392.tar.xz
mpd-c7da1821c35e27b357f33e003fdb08d65f4cb392.zip
CommandLine: show id3tag support in --version
-rw-r--r--src/CommandLine.cxx5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/CommandLine.cxx b/src/CommandLine.cxx
index c6e9c69c5..38a7275aa 100644
--- a/src/CommandLine.cxx
+++ b/src/CommandLine.cxx
@@ -145,6 +145,11 @@ static void version(void)
});
puts("\n"
+ "Tag plugins:\n"
+#ifdef ENABLE_ID3TAG
+ " id3tag"
+#endif
+ "\n\n"
"Output plugins:");
audio_output_plugins_for_each(plugin)
printf(" %s", plugin->name);