From 9d52ff34446958cc4bead8674774885bf73ac166 Mon Sep 17 00:00:00 2001 From: Eric Wong Date: Fri, 26 Aug 2005 00:51:49 +0000 Subject: [PATCH] disable shout if tremor is used because tremor is only an encoder git-svn-id: https://svn.musicpd.org/mpd/trunk@3454 09075e82-0dd4-0310-85a5-a0d7c8717e4f --- configure.ac | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index e2bab18d4..767e00044 100644 --- a/configure.ac +++ b/configure.ac @@ -117,7 +117,10 @@ case $host in esac if test x$enable_ogg = xno; then - AC_MSG_WARN("disabling shout streaming support since vorbis was not found") + AC_MSG_WARN("disabling shout streaming support because vorbis encoder was not found") + enable_shout=no +elif test x$use_tremor = xyes; then + AC_MSG_WARN("disabling shout streaming support because tremor does not support vorbis encoding") enable_shout=no fi