From 727c6226597fb710239b14e7985d97ec6b53f0ee Mon Sep 17 00:00:00 2001
From: Max Kellermann <max@duempel.org>
Date: Thu, 21 Nov 2013 22:50:58 +0100
Subject: [PATCH] configure.ac: auto-detect fluidsynth by default

The option "--enable-fluidsynth" was documented to be "auto" by
default, when it was really "no".
---
 NEWS         | 2 ++
 configure.ac | 8 +++++---
 2 files changed, 7 insertions(+), 3 deletions(-)

diff --git a/NEWS b/NEWS
index 44f323bfa..3056bf915 100644
--- a/NEWS
+++ b/NEWS
@@ -1,4 +1,6 @@
 ver 0.18.5 (20??/??/??)
+* decoder
+  - fluidsynth: auto-detect by default
 * fix build failures due to missing includes
 * fix build failure with static libmpdclient
 
diff --git a/configure.ac b/configure.ac
index 268cb7aa7..b62cb22eb 100644
--- a/configure.ac
+++ b/configure.ac
@@ -874,10 +874,12 @@ AM_CONDITIONAL(HAVE_FLAC, test x$enable_flac = xyes)
 enable_flac_encoder=$enable_flac
 
 dnl -------------------------------- FluidSynth -------------------------------
+
+MPD_AUTO_PKG(fluidsynth, FLUIDSYNTH, [fluidsynth >= 1.1],
+	[fluidsynth decoder], [fluidsynth not found])
+
 if test x$enable_fluidsynth = xyes; then
-	PKG_CHECK_MODULES(FLUIDSYNTH, [fluidsynth >= 1.1],
-		AC_DEFINE(ENABLE_FLUIDSYNTH, 1, [Define for fluidsynth support]),
-		enable_fluidsynth=no)
+	AC_DEFINE(ENABLE_FLUIDSYNTH, 1, [Define for fluidsynth support])
 fi
 
 AM_CONDITIONAL(ENABLE_FLUIDSYNTH, test x$enable_fluidsynth = xyes)