Commit 9d52ff34 authored by Eric Wong's avatar Eric Wong

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
parent 1a3254f7
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment