Skip to content
Snippets Groups Projects
Commit 61803775 authored by David Goulet's avatar David Goulet :panda_face:
Browse files

Merge branch 'tor-gitlab/mr/264'

parents 9a0a91dc 07f37c64
No related branches found
No related tags found
No related merge requests found
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.
......@@ -2816,10 +2816,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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment