From d34ec991911b3009a96b40c56152dc35b5416798 Mon Sep 17 00:00:00 2001 From: Michel Alexandre Salim Date: Thu, 6 Jan 2022 11:25:25 -0800 Subject: [PATCH] Enable gz support Signed-off-by: Michel Alexandre Salim --- zstd.spec | 23 ++++++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/zstd.spec b/zstd.spec index 7ba508d..79fa74f 100644 --- a/zstd.spec +++ b/zstd.spec @@ -1,3 +1,12 @@ +# enable .lz4 support by default +%bcond_without lz4 + +# enable .xz/.lzma support by default +%bcond_without lzma + +# enable .gz support by default +%bcond_without zlib + %if 0%{?rhel} && 0%{?rhel} <= 6 # gcc-4.4 is currently too old to compile pzstd %bcond_with pzstd @@ -22,7 +31,7 @@ Name: zstd Version: 1.5.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Zstd compression library License: BSD and GPLv2 @@ -33,9 +42,18 @@ Patch1: pzstd.1.patch BuildRequires: make BuildRequires: gcc gtest-devel +%if %{with lz4} +BuildRequires: lz4-devel +%endif +%if %{with lzma} +BuildRequires: xz-devel +%endif %if %{with pzstd} BuildRequires: gcc-c++ %endif +%if %{with zlib} +BuildRequires: zlib-devel +%endif BuildRequires: execstack %description @@ -135,6 +153,9 @@ install -D -m644 programs/%{name}.1 %{buildroot}%{_mandir}/man1/p%{name}.1 %ldconfig_scriptlets -n lib%{name} %changelog +* Fri Jan 07 2022 Michel Alexandre Salim - 1.5.1-5 +- Enable gz, .xz/.lzma and .lz4 support + * Mon Jan 03 2022 Pádraig Brady - 1.5.1-4 - Use correct prefix for pkgconfig.