aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile.am2
-rw-r--r--configure.ac7
2 files changed, 4 insertions, 5 deletions
diff --git a/Makefile.am b/Makefile.am
index 4f460b2b..2b77a3ba 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -270,9 +270,11 @@ endif
# archive plugins
ARCHIVE_CFLAGS = \
+ $(ISO9660_CFLAGS) \
$(ZZIP_CFLAGS)
ARCHIVE_LIBS = \
+ $(ISO9660_LIBS) \
$(ZZIP_LIBS)
ARCHIVE_SRC =
diff --git a/configure.ac b/configure.ac
index f7edd814..da73fd4c 100644
--- a/configure.ac
+++ b/configure.ac
@@ -338,11 +338,8 @@ AC_ARG_ENABLE(iso9660,
[enable iso9660 archive support (default: disabled)]),,
enable_iso9660=no)
-if test x$enable_iso9660 = xyes; then
- AC_CHECK_LIB(iso9660, iso9660_ifs_readdir,
- [MPD_LIBS="$MPD_LIBS -liso9660"],
- enable_iso9660=no)
-fi
+MPD_AUTO_PKG(iso9660, ISO9660, [libiso9660],
+ [libiso9660 archive library], [libiso9660 not found])
AM_CONDITIONAL(HAVE_ISO, test x$enable_iso9660 = xyes)
if test x$enable_iso9660 = xyes; then