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.
This commit is contained in:
Max Kellermann
2018-01-20 19:07:34 +01:00
parent e0a09dbd69
commit 27e4656515
6 changed files with 6 additions and 46 deletions

View File

@@ -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);