diff options
author | Max Kellermann <max@duempel.org> | 2010-12-22 07:25:39 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2010-12-22 07:31:17 +0100 |
commit | 76cddfab9043b5b3cd34abe4e7d6463733eaaf07 (patch) | |
tree | 01ad2442ba8d99d84802fca6f06e95204ba1f3a2 | |
parent | fb00e7fddc0e1d03cf26533a8b64c7778e5920ae (diff) | |
download | mpd-76cddfab9043b5b3cd34abe4e7d6463733eaaf07.tar.gz mpd-76cddfab9043b5b3cd34abe4e7d6463733eaaf07.tar.xz mpd-76cddfab9043b5b3cd34abe4e7d6463733eaaf07.zip |
configure.ac: disable the FFADO plugin by default
It is known to crash instantly.
-rw-r--r-- | NEWS | 2 | ||||
-rw-r--r-- | configure.ac | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -1,6 +1,8 @@ ver 0.16.1 (2010/??/??) * audio_check: fix parameter in prototype * add void casts to suppress "result unused" warnings (clang) +* input: + - ffado: disable by default * decoder: - mad: work around build failure on Solaris * output: diff --git a/configure.ac b/configure.ac index 18f56779b..c2e1f09f7 100644 --- a/configure.ac +++ b/configure.ac @@ -157,7 +157,7 @@ AC_ARG_ENABLE(documentation, AC_ARG_ENABLE(ffado, AS_HELP_STRING([--enable-ffado], [enable libffado (FireWire) support]),, - [enable_ffado=auto]) + [enable_ffado=no]) AC_ARG_ENABLE(ffmpeg, AS_HELP_STRING([--enable-ffmpeg], |