diff options
author | Avuton Olrich <avuton@gmail.com> | 2009-03-15 11:02:02 -0700 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-03-15 19:05:32 +0100 |
commit | 50c2dde5b50dcd864db362c47c859ea23f2ec16b (patch) | |
tree | 7910ddae84b307df606c37dbb3037c01e374c9e4 /configure.ac | |
parent | ae1a7fc84ae81a02208fdf6cb3f02581deee94f1 (diff) | |
download | mpd-50c2dde5b50dcd864db362c47c859ea23f2ec16b.tar.gz mpd-50c2dde5b50dcd864db362c47c859ea23f2ec16b.tar.xz mpd-50c2dde5b50dcd864db362c47c859ea23f2ec16b.zip |
configure.ac: Enable ENCODER if httpd_output, even if SHOUT is disabled.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 557ce97cb..283f5bcc7 100644 --- a/configure.ac +++ b/configure.ac @@ -632,7 +632,7 @@ fi AM_CONDITIONAL(HAVE_SHOUT, test x$enable_shout = xyes) -AM_CONDITIONAL(ENABLE_ENCODER, test x$enable_shout = xyes) +AM_CONDITIONAL(ENABLE_ENCODER, test x$enable_shout = xyes || test x$enable_httpd_output = xyes) AM_CONDITIONAL(ENABLE_VORBIS_ENCODER, test x$enable_shout_ogg = xyes) if test x$enable_shout_ogg = xyes; then AC_DEFINE(ENABLE_VORBIS_ENCODER, 1, |