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
This commit is contained in:
Eric Wong 2005-08-26 00:51:49 +00:00
parent 1a3254f73c
commit 9d52ff3444

View File

@ -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