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

This commit is contained in:
Avuton Olrich 2008-12-27 09:54:00 -08:00
parent 9ca7be9e82
commit e18ded8ded

View File

@ -1180,6 +1180,27 @@ if
AC_MSG_ERROR([No input plugins supported!])
fi
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:"
@ -1203,24 +1224,6 @@ else
echo " HTTP streaming (libcurl) ......disabled"
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 ""