From c73ebac4af7a3158189ba82c5eb74ae26e2b1106 Mon Sep 17 00:00:00 2001 From: Viliam Mateicka Date: Tue, 16 Dec 2008 21:42:34 +0100 Subject: new archive api, input_archive stream --- src/Makefile.am | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'src/Makefile.am') diff --git a/src/Makefile.am b/src/Makefile.am index 98b1cc830..006feeaa5 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -81,7 +81,10 @@ mpd_headers = \ zeroconf.h \ locate.h \ stored_playlist.h \ - timer.h + timer.h \ + archive_api.h \ + archive_list.h \ + input_archive.h mpd_SOURCES = \ @@ -155,7 +158,10 @@ mpd_SOURCES = \ volume.c \ locate.c \ stored_playlist.c \ - timer.c + timer.c \ + archive_api.c \ + archive_list.c \ + input_archive.c if HAVE_LIBSAMPLERATE mpd_SOURCES += pcm_resample_libsamplerate.c -- cgit v1.2.3 From 98fd9b7da8547efe81d473371bb3ca7620c7b2b2 Mon Sep 17 00:00:00 2001 From: Viliam Mateicka Date: Tue, 16 Dec 2008 21:45:59 +0100 Subject: archiveapi: archive plugin for BZ2 files --- src/Makefile.am | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/Makefile.am') diff --git a/src/Makefile.am b/src/Makefile.am index 006feeaa5..e694f3325 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -173,6 +173,12 @@ if HAVE_ID3TAG mpd_SOURCES += tag_id3.c endif +# archive plugins + +if HAVE_BZ2 +mpd_SOURCES += archive/bz2_plugin.c +endif + # decoder plugins -- cgit v1.2.3 From ddcf0a407876ef886ca8634daa223c6f27c236dc Mon Sep 17 00:00:00 2001 From: Viliam Mateicka Date: Tue, 16 Dec 2008 21:46:11 +0100 Subject: archiveapi: archive plugin for ZIP files --- src/Makefile.am | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/Makefile.am') diff --git a/src/Makefile.am b/src/Makefile.am index e694f3325..3408ef723 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -179,6 +179,9 @@ if HAVE_BZ2 mpd_SOURCES += archive/bz2_plugin.c endif +if HAVE_ZIP +mpd_SOURCES += archive/zip_plugin.c +endif # decoder plugins -- cgit v1.2.3 From 37796699cf751eb3ea8625d6c93e38abb46a6c87 Mon Sep 17 00:00:00 2001 From: Viliam Mateicka Date: Tue, 16 Dec 2008 21:48:26 +0100 Subject: archiveapi: archive plugin for ISO files --- src/Makefile.am | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/Makefile.am') diff --git a/src/Makefile.am b/src/Makefile.am index 3408ef723..0ec95ee82 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -183,6 +183,10 @@ if HAVE_ZIP mpd_SOURCES += archive/zip_plugin.c endif +if HAVE_ISO +mpd_SOURCES += archive/iso_plugin.c +endif + # decoder plugins if HAVE_MAD -- cgit v1.2.3