diff options
author | Viliam Mateicka <viliam.mateicka@gmail.com> | 2008-12-16 21:48:26 +0100 |
---|---|---|
committer | Viliam Mateicka <viliam.mateicka@gmail.com> | 2008-12-16 21:48:26 +0100 |
commit | 37796699cf751eb3ea8625d6c93e38abb46a6c87 (patch) | |
tree | 9660f752bc72509abc180f839808ee2dba75ba83 /src/archive_list.c | |
parent | ddcf0a407876ef886ca8634daa223c6f27c236dc (diff) | |
download | mpd-37796699cf751eb3ea8625d6c93e38abb46a6c87.tar.gz mpd-37796699cf751eb3ea8625d6c93e38abb46a6c87.tar.xz mpd-37796699cf751eb3ea8625d6c93e38abb46a6c87.zip |
archiveapi: archive plugin for ISO files
Diffstat (limited to 'src/archive_list.c')
-rw-r--r-- | src/archive_list.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/archive_list.c b/src/archive_list.c index 9f0dca6a9..046c6dbe4 100644 --- a/src/archive_list.c +++ b/src/archive_list.c @@ -29,6 +29,7 @@ extern const struct archive_plugin bz2_plugin; extern const struct archive_plugin zip_plugin; +extern const struct archive_plugin iso_plugin; static const struct archive_plugin *const archive_plugins[] = { #ifdef HAVE_BZ2 @@ -37,6 +38,9 @@ static const struct archive_plugin *const archive_plugins[] = { #ifdef HAVE_ZIP &zip_plugin, #endif +#ifdef HAVE_ISO + &iso_plugin, +#endif NULL }; |