diff options
author | Avuton Olrich <avuton@gmail.com> | 2010-04-17 04:24:24 -0700 |
---|---|---|
committer | Avuton Olrich <avuton@gmail.com> | 2010-04-21 07:35:32 -0700 |
commit | b619f5e73d10709bc18674d3577d1dfb4f99125a (patch) | |
tree | 6d3177ab080801e09ed7941bfc13bd18fbef662f /configure.ac | |
parent | e44f639002391a2e989b13b280820af7eb599146 (diff) | |
download | mpd-b619f5e73d10709bc18674d3577d1dfb4f99125a.tar.gz mpd-b619f5e73d10709bc18674d3577d1dfb4f99125a.tar.xz mpd-b619f5e73d10709bc18674d3577d1dfb4f99125a.zip |
configure.ac: Move HTTPD output to Streaming Audio Plugins.
Diffstat (limited to '')
-rw-r--r-- | configure.ac | 37 |
1 files changed, 22 insertions, 15 deletions
diff --git a/configure.ac b/configure.ac index 4775014c5..bf6964382 100644 --- a/configure.ac +++ b/configure.ac @@ -1288,6 +1288,28 @@ if test x$enable_encoder = xyes; then fi AM_CONDITIONAL(ENABLE_ENCODER, test x$enable_encoder = xyes) +dnl --------------------------------------------------------------------------- +dnl Audio Output Plugins (Streaming) +dnl --------------------------------------------------------------------------- + + +dnl ------------------------------- HTTPD Output ------------------------------ +if test x$enable_httpd_output = xauto; then + # handle HTTPD auto-detection: disable if no encoder is + # available + if test x$enable_encoder = xyes; then + enable_httpd_output=yes + else + AC_MSG_WARN([No encoder plugin -- disabling the HTTP output plugin]) + enable_httpd_output=no + fi +fi + +if test x$enable_httpd_output = xyes; then + AC_DEFINE(ENABLE_HTTPD_OUTPUT, 1, [Define to enable the HTTP server output]) +fi +AM_CONDITIONAL(ENABLE_HTTPD_OUTPUT, test x$enable_httpd_output = xyes) + if test x$enable_shout = xauto; then # handle shout auto-detection: disable if no encoder is # available @@ -1310,17 +1332,6 @@ if test x$enable_recorder_output = xauto; then fi fi -if test x$enable_httpd_output = xauto; then - # handle HTTPD auto-detection: disable if no encoder is - # available - if test x$enable_encoder = xyes; then - enable_httpd_output=yes - else - AC_MSG_WARN([No encoder plugin -- disabling the HTTP output plugin]) - enable_httpd_output=no - fi -fi - AM_CONDITIONAL(HAVE_SHOUT, test x$enable_shout = xyes) if test x$enable_shout = xyes; then AC_DEFINE(HAVE_SHOUT, 1, [Define to enable the shoutcast output]) @@ -1331,10 +1342,6 @@ if test x$enable_recorder_output = xyes; then AC_DEFINE(ENABLE_RECORDER_OUTPUT, 1, [Define to enable the recorder output]) fi -AM_CONDITIONAL(ENABLE_HTTPD_OUTPUT, test x$enable_httpd_output = xyes) -if test x$enable_httpd_output = xyes; then - AC_DEFINE(ENABLE_HTTPD_OUTPUT, 1, [Define to enable the HTTP server output]) -fi dnl --------------------------------------------------------------------------- dnl Documentation |