summaryrefslogtreecommitdiff
path: root/src/other_tools/utils/archive_ops.hpp
diff options
context:
space:
mode:
authorPaul Cristian Sarbu <paul.cristian.sarbu@huawei.com>2023-08-10 17:17:42 +0200
committerPaul Cristian Sarbu <paul.cristian.sarbu@huawei.com>2023-08-14 15:09:11 +0200
commit89757d717dd93b38ee5fe1d282b5946641fc6f29 (patch)
tree2475b33031c3fe6a88177d535f6fc56f14d1fcce /src/other_tools/utils/archive_ops.hpp
parent24ad2ce7d070ae684159b6445981017dd7a40f8a (diff)
downloadjustbuild-89757d717dd93b38ee5fe1d282b5946641fc6f29.tar.gz
ArchiveOps: Allow lzip and lzma compression filters for tarballs
These are provided by the recently added liblzma external dependency.
Diffstat (limited to 'src/other_tools/utils/archive_ops.hpp')
-rw-r--r--src/other_tools/utils/archive_ops.hpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/other_tools/utils/archive_ops.hpp b/src/other_tools/utils/archive_ops.hpp
index 74fcf39c..91595867 100644
--- a/src/other_tools/utils/archive_ops.hpp
+++ b/src/other_tools/utils/archive_ops.hpp
@@ -31,6 +31,8 @@ enum class ArchiveType : size_t {
TarGz,
TarBz2,
TarXz,
+ TarLz,
+ TarLzma,
TarAuto, // autodetect tarball-type archives
};