diff options
author | Eric Wong <normalperson@yhbt.net> | 2005-06-30 08:36:56 +0000 |
---|---|---|
committer | Eric Wong <normalperson@yhbt.net> | 2005-06-30 08:36:56 +0000 |
commit | bf9d8a0bbec194bb4a6ac4932442e063c87586ab (patch) | |
tree | bb60b5fe1bec9927913840a4eb9ed9dd7f3f304b /configure.ac | |
parent | b443608e76029755f08e2f2a14c4b57a4bdcdfad (diff) | |
download | mpd-bf9d8a0bbec194bb4a6ac4932442e063c87586ab.tar.gz mpd-bf9d8a0bbec194bb4a6ac4932442e063c87586ab.tar.xz mpd-bf9d8a0bbec194bb4a6ac4932442e063c87586ab.zip |
actually disable shout if ogg-vorbis is disabled, instead of just
warning and not doing anything about it
git-svn-id: https://svn.musicpd.org/mpd/trunk@3381 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to '')
-rw-r--r-- | configure.ac | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 78ce5ed85..fd9f4bd41 100644 --- a/configure.ac +++ b/configure.ac @@ -113,6 +113,7 @@ esac if test x$enable_ogg = xno; then AC_MSG_WARN("disabling shout streaming support since vorbis was not found") + enable_shout=no fi if test x$enable_ao = xyes; then |