From edaf017908f153091f0e3da073729bc2522a56f4 Mon Sep 17 00:00:00 2001
From: Max Kellermann <max@duempel.org>
Date: Sat, 14 Nov 2009 01:45:21 +0100
Subject: decoder/mikmod: set drv_name and drv_version from PACKAGE/VERSION

---
 src/decoder/mikmod_plugin.c | 6 +++---
 1 file 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 = {
-- 
cgit v1.2.3