tor

The Tor anonymity network
git clone https://git.dasho.dev/tor.git
Log | Files | Refs | README | LICENSE

commit 61803775e8b1439b01dbd37ebf4f6105fb19d2f8
parent 9a0a91dc23ac465d8e834c0c200eea46db3cdf02
Author: David Goulet <dgoulet@torproject.org>
Date:   Wed, 20 Jan 2021 16:22:36 -0500

Merge branch 'tor-gitlab/mr/264'

Diffstat:
Achanges/bug40236 | 2++
Mconfigure.ac | 4++--
2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/changes/bug40236 b/changes/bug40236 @@ -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. diff --git a/configure.ac b/configure.ac @@ -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