diff options
Diffstat (limited to 'src/archive_list.c')
-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 }; |