diff options
Diffstat (limited to 'src/inputPlugins/mod_plugin.c')
-rw-r--r-- | src/inputPlugins/mod_plugin.c | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/inputPlugins/mod_plugin.c b/src/inputPlugins/mod_plugin.c index 475937ad0..6adb5e19f 100644 --- a/src/inputPlugins/mod_plugin.c +++ b/src/inputPlugins/mod_plugin.c @@ -64,8 +64,13 @@ static MDRIVER drv_mpd = { "MPD Output Driver v0.1", 0, 255, - "mpd", - NULL, +#if (LIBMIKMOD_VERSION > 0x030106) + "mpd", /* Alias */ +#if (LIBMIKMOD_VERSION > 0x030200) + NULL, /* CmdLineHelp */ +#endif + NULL, /* CommandLine */ +#endif mod_mpd_IsThere, VC_SampleLoad, VC_SampleUnload, |