archiveapi: archive plugin for ISO files

This commit is contained in:
Viliam Mateicka
2008-12-16 21:48:26 +01:00
parent ddcf0a4078
commit 37796699cf
4 changed files with 286 additions and 0 deletions

View File

@@ -190,6 +190,14 @@ AC_ARG_ENABLE(zip,
AM_CONDITIONAL(HAVE_ZIP, test x$enable_zip = xyes)
AC_ARG_ENABLE(iso9660,
AS_HELP_STRING([--enable-iso9660],
[enable iso9660 archive support (default: disabled)]),
enable_iso=$enableval,
enable_iso=no)
AM_CONDITIONAL(HAVE_ISO, test x$enable_iso = xyes)
# archive plugin libraries
AC_CHECK_LIB(bz2, BZ2_bzDecompressInit,[MPD_LIBS="-lbz2";],enable_bz2=no)
@@ -202,6 +210,12 @@ if test x$enable_zip = xyes; then
AC_DEFINE(HAVE_ZIP, 1, [Define to have zip archive support])
fi
AC_CHECK_LIB(iso9660, iso9660_ifs_readdir ,,enable_iso=no)
if test x$enable_iso = xyes; then
MPD_LIBS="$MPD_LIBS -liso9660"
AC_DEFINE(HAVE_ISO, 1, [Define to have iso archive support])
fi
dnl
dnl decoder plugins
dnl
@@ -1190,6 +1204,12 @@ 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 ""