Bugfix for 40236

Make configure script minireport accurate automatic detection and usage of liblzma and libzstd
This commit is contained in:
Ali Raheem 2021-01-18 19:37:26 +00:00
parent 17eb635532
commit 07f37c64f8
2 changed files with 4 additions and 2 deletions

2
changes/bug40236 Normal file
View File

@ -0,0 +1,2 @@
o Minor bugfixes (build):
- Mini-report in the configure script now shows whether or not lzma and zstd have been used, not just if enable flag passed in. Fixes bug 40236; bugfix on 0.4.3.1-alpha.

View File

@ -2659,10 +2659,10 @@ PPRINT_PROP_BOOL([libscrypt (--disable-libscrypt)], $value)
test "x$enable_systemd" = "xyes" && value=1 || value=0
PPRINT_PROP_BOOL([Systemd support (--enable-systemd)], $value)
test "x$enable_lzma" = "xyes" && value=1 || value=0
test "x$have_lzma" = "xyes" && value=1 || value=0
PPRINT_PROP_BOOL([liblzma (--enable-lzma)], $value)
test "x$enable_zstd" = "xyes" && value=1 || value=0
test "x$have_zstd" = "xyes" && value=1 || value=0
PPRINT_PROP_BOOL([libzstd (--enable-zstd)], $value)
AS_ECHO