configure.ac: added libcurl to configure summary
When updating from a version before libcurl was used for streaming support, this is confusing - streaming will work with the old version (e.g. 0.13.2) but will give "no such file" errors with the new due to the missing dependency. However, the missing dependency will not be obvious when running the configure script.
This commit is contained in:
parent
dedaf7033b
commit
9deecd219e
|
@ -1146,6 +1146,14 @@ else
|
|||
echo " Zeroconf support ..............disabled"
|
||||
fi
|
||||
|
||||
|
||||
if test x$enable_curl != xno; then
|
||||
echo " HTTP streaming (libcurl) ......enabled"
|
||||
else
|
||||
echo " HTTP streaming (libcurl) ......disabled"
|
||||
fi
|
||||
|
||||
|
||||
echo ""
|
||||
echo "##########################################"
|
||||
echo ""
|
||||
|
|
Loading…
Reference in New Issue