summaryrefslogtreecommitdiff
path: root/src/CommandLine.cxx
diff options
context:
space:
mode:
authorMax Kellermann <max@musicpd.org>2018-01-20 19:07:34 +0100
committerMax Kellermann <max@musicpd.org>2018-01-20 19:07:34 +0100
commit27e46565159c34766b70e0040b7b02eb1277faa5 (patch)
treedbba3d92ccbb2d100b63b65f9772552c5cd4ebb6 /src/CommandLine.cxx
parente0a09dbd690d3c66f36f78a292046d3adb3a4da6 (diff)
input/{file,archive}: remove the dummy InputPlugin instances
These have no use, exception for creating an artificial dependency from input_plugins[] to all archive plugins.
Diffstat (limited to 'src/CommandLine.cxx')
-rw-r--r--src/CommandLine.cxx7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/CommandLine.cxx b/src/CommandLine.cxx
index 8f29720ff..27f30f3a1 100644
--- a/src/CommandLine.cxx
+++ b/src/CommandLine.cxx
@@ -200,7 +200,12 @@ static void version(void)
#endif
"\n"
- "Input plugins:\n");
+ "Input plugins:\n"
+ " file"
+#ifdef ENABLE_ARCHIVE
+ " archive"
+#endif
+ );
input_plugins_for_each(plugin)
printf(" %s", plugin->name);