tor

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

commit a8a92b94568bac8efee1f3d736569226ac82fced
parent b5412d12f9eb4ef7ad5265ac441cd63b3f100ef3
Author: teor <teor@torproject.org>
Date:   Wed,  1 Apr 2020 23:03:51 +1000

Merge branch 'maint-0.4.3'

Diffstat:
Achanges/ticket33646 | 4++++
Mconfigure.ac | 2+-
2 files changed, 5 insertions(+), 1 deletion(-)

diff --git a/changes/ticket33646 b/changes/ticket33646 @@ -0,0 +1,4 @@ + o Minor bugfixes (build system): + - Correctly output the enabled module in the configure summary. Before that, + the list shown was just plain wrong. Fixes bug 33646; bugfix on + 0.4.3.2-alpha. diff --git a/configure.ac b/configure.ac @@ -2673,7 +2673,7 @@ PPRINT_SUBTITLE([Modules]) m4_foreach_w([mname], MODULES, [ - test "xenable_module_mname" != "xno" && value=1 || value=0 + AM_COND_IF(m4_join([], [BUILD_MODULE_], m4_toupper([]mname[])), value=1, value=0) PPRINT_PROP_BOOL([mname (--disable-module-mname)], $value) ] )