Commit f5c75d88 authored by Avuton Olrich's avatar Avuton Olrich

configure: Move encoders to their own report section.

parent a672cf1c
......@@ -1105,6 +1105,12 @@ else
echo " FIFO support ..................disabled"
fi
if test x$enable_httpd_output = xyes; then
echo " HTTP daemon support ...........enabled"
else
echo " HTTP daemon support ...........disabled"
fi
if test x$enable_jack = xyes; then
echo " JACK support ..................enabled"
else
......@@ -1149,28 +1155,10 @@ fi
if test x$enable_shout = xyes; then
echo " SHOUTcast support .............enabled"
if test x$enable_lame_encoder = xyes; then
echo " with LAME mp3 encoder .......enabled"
else
echo " with LAME mp3 encoder .......disabled"
fi
if test x$enable_oggvorbis_encoder = xyes; then
echo " with Ogg Vorbis encoder .....enabled"
else
echo " with Ogg Vorbis encoder .....disabled"
fi
else
echo " SHOUTcast support .............disabled"
fi
if test x$enable_httpd_output = xyes; then
echo " HTTP daemon support ...........enabled"
else
echo " HTTP daemon support ...........disabled"
fi
echo ""
if
......@@ -1188,6 +1176,24 @@ if
AC_MSG_ERROR([No Audio Output types configured!])
fi
if
test x$enable_shout = xyes ||
test x$enable_httpd_output = xyes; then
echo " Streaming Encoder Support:"
if test x$enable_lame_encoder = xyes; then
echo " LAME mp3 encoder ..............enabled"
else
echo " LAME mp3 encoder ..............disabled"
fi
if test x$enable_oggvorbis_encoder = xyes; then
echo " Ogg Vorbis encoder ............enabled"
else
echo " Ogg Vorbis encoder ............disabled"
fi
echo ""
fi
echo " File Format Support:"
if test x$enable_aac = xyes; then
......
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