From 1a8028600fd06250f5cb449a60e553a7098311a2 Mon Sep 17 00:00:00 2001 From: ejurgensen Date: Mon, 28 Dec 2015 21:41:48 +0100 Subject: [PATCH] [config] Enable MPD support by default --- configure.ac | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/configure.ac b/configure.ac index 3bca3779..12818cf1 100644 --- a/configure.ac +++ b/configure.ac @@ -177,11 +177,11 @@ AS_IF([test "x$enable_lastfm" = "xyes"], [ AM_CONDITIONAL(COND_LASTFM, [test "x$enable_lastfm" = "xyes"]) dnl MPD support -AC_ARG_ENABLE(mpd, AS_HELP_STRING([--enable-mpd], [enable MPD client protocol support (default=no)])) -AS_IF([test "x$enable_mpd" = "xyes"], [ +AC_ARG_ENABLE(mpd, AS_HELP_STRING([--disable-mpd], [disable MPD client protocol support (default=no)])) +AS_IF([test "x$enable_mpd" != "xno"], [ CPPFLAGS="${CPPFLAGS} -DMPD" ]) -AM_CONDITIONAL(COND_MPD, [test "x$enable_mpd" = "xyes"]) +AM_CONDITIONAL(COND_MPD, [test "x$enable_mpd" != "xno"]) dnl --- End options --- dnl Selection of local audio sound system