Commit cd522582 authored by Avuton Olrich's avatar Avuton Olrich Committed by Max Kellermann

configure: Add 'Streaming Support' section to the configure display.

Add 'Streaming Support section to the configure display, clarify the text and unify with the rest of the display.
parent 6ab53cf6
...@@ -1445,42 +1445,45 @@ else ...@@ -1445,42 +1445,45 @@ else
fi fi
echo "" echo ""
echo " Other features:" echo " Streaming support:"
if test x$enable_curl != xno; then if test x$enable_lame = xyes; then
echo " HTTP streaming (libcurl) ......enabled" echo " lame support (mp3 output) .....enabled"
else else
echo " HTTP streaming (libcurl) ......disabled" echo " lame support (mp3 output) .....disabled"
fi fi
if test x$enable_id3 = xyes; then if test x$enable_lastfm = xyes; then
echo " ID3 tag support ...............enabled" echo " last.fm radio support .........enabled"
else else
echo " ID3 tag support ...............disabled" echo " last.fm radio support .........disabled"
fi fi
if test x$enable_lame = xyes; then if test x$enable_curl != xno; then
echo " lame support ..................enabled" echo " libcurl support (streaming) ...enabled"
else else
echo " lame support ..................disabled" echo " libcurl support (streaming) ...disabled"
fi fi
if test x$enable_lastfm = xyes; then if test x$enable_mms != xno; then
echo " lastfm radio support ..........enabled" echo " libmms support ................enabled"
else else
echo " lastfm radio support ..........disabled" echo " libmms support ................disabled"
fi fi
if test x$enable_lsr = xyes; then echo ""
echo " libsamplerate support .........enabled" echo " Other features:"
if test x$enable_id3 = xyes; then
echo " ID3 tag support ...............enabled"
else else
echo " libsamplerate support .........disabled" echo " ID3 tag support ...............disabled"
fi fi
if test x$enable_mms != xno; then if test x$enable_lsr = xyes; then
echo " MMS streaming (libmms) ........enabled" echo " libsamplerate support .........enabled"
else else
echo " MMS streaming (libmms) ........disabled" echo " libsamplerate support .........disabled"
fi fi
if test x$with_zeroconf != xno; then if test x$with_zeroconf != xno; 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