summaryrefslogtreecommitdiff
path: root/src/import/import-compress.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/import/import-compress.h')
-rw-r--r--src/import/import-compress.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/import/import-compress.h b/src/import/import-compress.h
index 6fb87ccdfb..859bd0e1a4 100644
--- a/src/import/import-compress.h
+++ b/src/import/import-compress.h
@@ -1,7 +1,9 @@
/* SPDX-License-Identifier: LGPL-2.1+ */
#pragma once
+#if HAVE_BZIP2
#include <bzlib.h>
+#endif
#include <lzma.h>
#include <sys/types.h>
#include <zlib.h>
@@ -24,7 +26,9 @@ typedef struct ImportCompress {
union {
lzma_stream xz;
z_stream gzip;
+#if HAVE_BZIP2
bz_stream bzip2;
+#endif
};
} ImportCompress;