diff options
author | Viliam Mateicka <viliam.mateicka@gmail.com> | 2008-12-16 21:45:59 +0100 |
---|---|---|
committer | Viliam Mateicka <viliam.mateicka@gmail.com> | 2008-12-16 21:45:59 +0100 |
commit | 98fd9b7da8547efe81d473371bb3ca7620c7b2b2 (patch) | |
tree | bdd2d95aaadf8c75b352630b2c65c495a2f11832 /src/archive_list.c | |
parent | 77946a901f1bf7bf7b2dfb5238b14f9d1941d49c (diff) | |
download | mpd-98fd9b7da8547efe81d473371bb3ca7620c7b2b2.tar.gz mpd-98fd9b7da8547efe81d473371bb3ca7620c7b2b2.tar.xz mpd-98fd9b7da8547efe81d473371bb3ca7620c7b2b2.zip |
archiveapi: archive plugin for BZ2 files
Diffstat (limited to '')
-rw-r--r-- | src/archive_list.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/archive_list.c b/src/archive_list.c index 97aefdac2..2f86c0ad6 100644 --- a/src/archive_list.c +++ b/src/archive_list.c @@ -1,3 +1,6 @@ + + + /* the Music Player Daemon (MPD) * Copyright (C) 2008 Viliam Mateicka <viliam.mateicka@gmail.com> * This project's homepage is: http://www.musicpd.org @@ -24,7 +27,12 @@ #include <string.h> #include <glib.h> +extern const struct archive_plugin bz2_plugin; + static const struct archive_plugin *const archive_plugins[] = { +#ifdef HAVE_BZ2 + &bz2_plugin, +#endif NULL }; |