mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-27 13:53:31 +01:00
Bugfix for 40236
Make configure script minireport accurate automatic detection and usage of liblzma and libzstd
This commit is contained in:
parent
17eb635532
commit
07f37c64f8
2
changes/bug40236
Normal file
2
changes/bug40236
Normal 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.
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user