diff options
author | Max Kellermann <max@duempel.org> | 2009-11-14 01:45:21 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-11-14 02:24:42 +0100 |
commit | edaf017908f153091f0e3da073729bc2522a56f4 (patch) | |
tree | eda5bc31ef6d65f3578bc5f91134baa355578601 /src/decoder/mikmod_plugin.c | |
parent | 2c7bf61e68bd6db49047f54c4aec3d0fecb824d0 (diff) | |
download | mpd-edaf017908f153091f0e3da073729bc2522a56f4.tar.gz mpd-edaf017908f153091f0e3da073729bc2522a56f4.tar.xz mpd-edaf017908f153091f0e3da073729bc2522a56f4.zip |
decoder/mikmod: set drv_name and drv_version from PACKAGE/VERSION
Diffstat (limited to '')
-rw-r--r-- | src/decoder/mikmod_plugin.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/decoder/mikmod_plugin.c b/src/decoder/mikmod_plugin.c index 695cefb87..720196333 100644 --- a/src/decoder/mikmod_plugin.c +++ b/src/decoder/mikmod_plugin.c @@ -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 = { |