require mpd >= 0.16.0

This commit is contained in:
Andrzej Rybczak
2012-09-12 20:06:26 +02:00
parent 4b60214ed1
commit a8e3d0fd2d
4 changed files with 3 additions and 17 deletions

View File

@@ -124,9 +124,9 @@ int main(int argc, char **argv)
if (!Action::ConnectToMPD())
exit(1);
if (Mpd.Version() < 14)
if (Mpd.Version() < 16)
{
std::cout << "MPD < 0.14 is not supported, please upgrade.\n";
std::cout << "MPD < 0.16.0 is not supported, please upgrade.\n";
exit(1);
}