diff options
author | Max Kellermann <max@duempel.org> | 2009-11-10 21:27:55 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-11-10 21:27:55 +0100 |
commit | 70106464d306a3723b0fa5df094502c846033fd3 (patch) | |
tree | a41b02fe1d97d65c787afd7bc1ad19ed97b444cb | |
parent | b722d3d7f365b106794a3f40435ab220098959c5 (diff) | |
download | mpd-70106464d306a3723b0fa5df094502c846033fd3.tar.gz mpd-70106464d306a3723b0fa5df094502c846033fd3.tar.xz mpd-70106464d306a3723b0fa5df094502c846033fd3.zip |
configure.ac: enable_audiofile defaults to "auto"
Since we're using MPD_AUTO_PKG, we can auto-detect this option. Also
fix the --enable-audiofile help string.
Diffstat (limited to '')
-rw-r--r-- | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index f7d6d6e0e..1ccb3b70d 100644 --- a/configure.ac +++ b/configure.ac @@ -410,8 +410,8 @@ dnl AC_ARG_ENABLE(audiofile, AS_HELP_STRING([--enable-audiofile], - [enable audiofile support, disables wave support]),, - enable_audiofile=yes) + [enable audiofile support (WAV and others)]),, + enable_audiofile=auto) MPD_AUTO_PKG(audiofile, AUDIOFILE, [audiofile >= 0.1.7], [audiofile decoder plugin], [libaudiofile not found]) |