Commit b7ee1f5c authored by Avuton Olrich's avatar Avuton Olrich

configure.ac: Move Recorder output to Streaming Audio Plugins.

parent b619f5e7
...@@ -1310,39 +1310,41 @@ if test x$enable_httpd_output = xyes; then ...@@ -1310,39 +1310,41 @@ if test x$enable_httpd_output = xyes; then
fi fi
AM_CONDITIONAL(ENABLE_HTTPD_OUTPUT, test x$enable_httpd_output = xyes) AM_CONDITIONAL(ENABLE_HTTPD_OUTPUT, test x$enable_httpd_output = xyes)
if test x$enable_shout = xauto; then dnl --------------------------------- Recorder --------------------------------
# handle shout auto-detection: disable if no encoder is if test x$enable_recorder_output = xauto; then
# handle recorder auto-detection: disable if no encoder is
# available # available
if test x$enable_encoder = xyes; then if test x$enable_encoder = xyes; then
enable_shout=yes enable_recorder_output=yes
else else
AC_MSG_WARN([No encoder plugin -- disabling the shout output plugin]) AC_MSG_WARN([No encoder plugin -- disabling the recorder output plugin])
enable_shout=no enable_recorder_output=no
fi fi
fi fi
if test x$enable_recorder_output = xauto; then if test x$enable_recorder_output = xyes; then
# handle recorder auto-detection: disable if no encoder is AC_DEFINE(ENABLE_RECORDER_OUTPUT, 1, [Define to enable the recorder output])
fi
AM_CONDITIONAL(ENABLE_RECORDER_OUTPUT, test x$enable_recorder_output = xyes)
if test x$enable_shout = xauto; then
# handle shout auto-detection: disable if no encoder is
# available # available
if test x$enable_encoder = xyes; then if test x$enable_encoder = xyes; then
enable_recorder_output=yes enable_shout=yes
else else
AC_MSG_WARN([No encoder plugin -- disabling the recorder output plugin]) AC_MSG_WARN([No encoder plugin -- disabling the shout output plugin])
enable_recorder_output=no enable_shout=no
fi fi
fi fi
AM_CONDITIONAL(HAVE_SHOUT, test x$enable_shout = xyes) AM_CONDITIONAL(HAVE_SHOUT, test x$enable_shout = xyes)
if test x$enable_shout = xyes; then if test x$enable_shout = xyes; then
AC_DEFINE(HAVE_SHOUT, 1, [Define to enable the shoutcast output]) AC_DEFINE(HAVE_SHOUT, 1, [Define to enable the shoutcast output])
fi fi
AM_CONDITIONAL(ENABLE_RECORDER_OUTPUT, test x$enable_recorder_output = xyes)
if test x$enable_recorder_output = xyes; then
AC_DEFINE(ENABLE_RECORDER_OUTPUT, 1, [Define to enable the recorder output])
fi
dnl --------------------------------------------------------------------------- dnl ---------------------------------------------------------------------------
dnl Documentation dnl Documentation
dnl --------------------------------------------------------------------------- dnl ---------------------------------------------------------------------------
......
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