configure: Move encoders to their own report section.

This commit is contained in:
Avuton Olrich 2009-03-15 12:02:43 -07:00
parent a672cf1c63
commit f5c75d8846

View File

@ -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