diff options
author | Eric Wong <normalperson@yhbt.net> | 2005-08-26 00:51:49 +0000 |
---|---|---|
committer | Eric Wong <normalperson@yhbt.net> | 2005-08-26 00:51:49 +0000 |
commit | 9d52ff34446958cc4bead8674774885bf73ac166 (patch) | |
tree | 15a718d1fa331d113ea53ff118d7fe4d53b561c4 /configure.ac | |
parent | 1a3254f73ca3527388854d6af8e2b5e06e5c13e0 (diff) | |
download | mpd-9d52ff34446958cc4bead8674774885bf73ac166.tar.gz mpd-9d52ff34446958cc4bead8674774885bf73ac166.tar.xz mpd-9d52ff34446958cc4bead8674774885bf73ac166.zip |
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
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 5 |
1 files changed, 4 insertions, 1 deletions
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 |