diff options
-rw-r--r-- | NEWS | 3 | ||||
-rw-r--r-- | configure.ac | 5 |
2 files changed, 7 insertions, 1 deletions
@@ -19,7 +19,8 @@ ver 0.17.2 (2012/??/??) * state_file: save song priorities * player: disable cross-fading in "single" mode * update: fix unsafe readlink() usage - +* configure.ac: + - don't auto-detect the vorbis encoder when Tremor is enabled ver 0.17.1 (2012/07/31) * protocol: diff --git a/configure.ac b/configure.ac index f9062934f..87106a4f2 100644 --- a/configure.ac +++ b/configure.ac @@ -999,6 +999,11 @@ if test x$enable_tremor = xyes; then AC_MSG_WARN(["OggTremor detected, could not enable Vorbis."]) fi enable_vorbis=no + + if test x$enable_vorbis_encoder = xauto; then + AC_MSG_WARN([OggTremor detected, disabling the Vorbis encoder plugin.]) + enable_vorbis_encoder=no + fi fi MPD_AUTO_PKG(vorbis, VORBIS, [vorbis vorbisfile ogg], |