summaryrefslogtreecommitdiff
path: root/lib/Makemodule.am
diff options
context:
space:
mode:
authorDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2019-05-19 21:46:34 +0200
committerDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2019-05-19 21:46:34 +0200
commitbc2bdb3c4f5cb969635f320beaa9e7bcf42450b2 (patch)
tree8e24aa2d76d79620558186bb0aa9a4c270c77672 /lib/Makemodule.am
parent0a83c3d1709e88656be7d3f2d53259b550b57128 (diff)
Add ZSTD compressor implementation
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'lib/Makemodule.am')
-rw-r--r--lib/Makemodule.am7
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/Makemodule.am b/lib/Makemodule.am
index 737b474..ee02d44 100644
--- a/lib/Makemodule.am
+++ b/lib/Makemodule.am
@@ -52,6 +52,13 @@ libcompress_a_CFLAGS += $(LZ4_CFLAGS)
libcompress_a_CPPFLAGS += -DWITH_LZ4
endif
+if WITH_ZSTD
+libcompress_a_SOURCES += lib/comp/zstd.c
+
+libcompress_a_CFLAGS += $(ZSTD_CFLAGS)
+libcompress_a_CPPFLAGS += -DWITH_ZSTD
+endif
+
if WITH_SELINUX
libfstree_a_SOURCES += lib/fstree/selinux.c