decoder/mikmod: set drv_name and drv_version from PACKAGE/VERSION

This commit is contained in:
Max Kellermann 2009-11-14 01:45:21 +01:00
parent 2c7bf61e68
commit edaf017908
1 changed files with 3 additions and 3 deletions

View File

@ -54,11 +54,11 @@ mikmod_mpd_is_present(void)
return true;
}
static char drv_name[] = "MPD";
static char drv_version[] = "MPD Output Driver v0.1";
static char drv_name[] = PACKAGE_NAME;
static char drv_version[] = VERSION;
#if (LIBMIKMOD_VERSION > 0x030106)
static char drv_alias[] = "mpd";
static char drv_alias[] = PACKAGE;
#endif
static MDRIVER drv_mpd = {