diff options
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 39 |
1 files changed, 21 insertions, 18 deletions
diff --git a/configure.ac b/configure.ac index 9dd907d16..cb3c474e5 100644 --- a/configure.ac +++ b/configure.ac @@ -1181,6 +1181,27 @@ if 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:" if test x$enable_lsr = xyes; then @@ -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 "" |