Commit e18ded8d authored by Avuton Olrich's avatar Avuton Olrich

Add an "Archive support" section to the configure results screen.

parent 9ca7be9e
...@@ -1181,6 +1181,27 @@ if ...@@ -1181,6 +1181,27 @@ if
fi fi
echo "" echo ""
echo " Archive support:"
if test x$enable_bz2 = xyes; then
echo " BZ2 archives support ..........enabled"
else
echo " BZ2 archives support ..........disabled"
fi
if test x$enable_zip = xyes; then
echo " ZIP archives support ..........enabled"
else
echo " ZIP archives support ..........disabled"
fi
if test x$enable_iso = xyes; then
echo " ISO 9660 archives support .....enabled"
else
echo " ISO 9660 archives support .....disabled"
fi
echo ""
echo " Other features:" echo " Other features:"
if test x$enable_lsr = xyes; then if test x$enable_lsr = xyes; then
...@@ -1203,24 +1224,6 @@ else ...@@ -1203,24 +1224,6 @@ else
echo " HTTP streaming (libcurl) ......disabled" echo " HTTP streaming (libcurl) ......disabled"
fi fi
if test x$enable_bz2 = xyes; then
echo " BZ2 archives support ..........enabled"
else
echo " BZ2 archives support ..........disabled"
fi
if test x$enable_zip = xyes; then
echo " ZIP archives support ..........enabled"
else
echo " ZIP archives support ..........disabled"
fi
if test x$enable_iso = xyes; then
echo " ISO 9660 archives support .....enabled"
else
echo " ISO 9660 archives support .....disabled"
fi
echo "" echo ""
echo "##########################################" echo "##########################################"
echo "" echo ""
......
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