aboutsummaryrefslogtreecommitdiff
path: root/src/archive_list.c
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2013-04-22 11:31:06 +0200
committerAnton Khirnov <anton@khirnov.net>2013-11-04 11:02:10 +0100
commit6fd304e5e6c8b386d3671f4932a74124fd37192a (patch)
tree0110c5339a4fe42276017f1fd74373baa1e25f22 /src/archive_list.c
parentd3018bfbb5f5712e6fe0f7ce534a362a0518d2c2 (diff)
Switch from autotools to a custom build system adapted from Libav.
Diffstat (limited to 'src/archive_list.c')
-rw-r--r--src/archive_list.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/archive_list.c b/src/archive_list.c
index e23567bd..2cdb750c 100644
--- a/src/archive_list.c
+++ b/src/archive_list.c
@@ -29,13 +29,13 @@
#include <glib.h>
const struct archive_plugin *const archive_plugins[] = {
-#ifdef HAVE_BZ2
+#if CONFIG_BZ2_ARCHIVE
&bz2_archive_plugin,
#endif
-#ifdef HAVE_ZZIP
+#if CONFIG_ZZIP_ARCHIVE
&zzip_archive_plugin,
#endif
-#ifdef HAVE_ISO9660
+#if CONFIG_ISO9660_ARCHIVE
&iso9660_archive_plugin,
#endif
NULL