archiveapi: archive plugin for BZ2 files

This commit is contained in:
Viliam Mateicka
2008-12-16 21:45:59 +01:00
parent 77946a901f
commit 98fd9b7da8
4 changed files with 342 additions and 0 deletions

View File

@@ -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
};