Merge pull request #11462 from oxij/mpd-client-support

mpd: set clientSupport to true by default
This commit is contained in:
Arseniy Seroka 2015-12-04 23:57:06 +03:00
commit a07cbec43c
2 changed files with 2 additions and 2 deletions

View File

@ -21,7 +21,7 @@
, jackSupport ? true, libjack2
, gmeSupport ? true, game-music-emu
, icuSupport ? true, icu
, clientSupport ? false, mpd_clientlib
, clientSupport ? true, mpd_clientlib
, opusSupport ? true, libopus
}:

View File

@ -9248,7 +9248,7 @@ let
mpd = callPackage ../servers/mpd {
aacSupport = config.mpd.aacSupport or true;
clientSupport = config.mpd.clientSupport or false;
clientSupport = config.mpd.clientSupport or true;
ffmpegSupport = config.mpd.ffmpegSupport or true;
opusSupport = config.mpd.opusSupport or true;