diff options
author | David Goulet <dgoulet@torproject.org> | 2019-10-24 09:08:36 -0400 |
---|---|---|
committer | David Goulet <dgoulet@torproject.org> | 2019-10-24 09:08:36 -0400 |
commit | cf5f52d6947c653b3e44a331428389abf0f1b16b (patch) | |
tree | ac4d96009cba80d47ae1e4cdb54b0f557bf412ee /configure.ac | |
parent | a03c0394a3f6885cd10f1c1d7e93834b39ab8fde (diff) | |
download | tor-cf5f52d6947c653b3e44a331428389abf0f1b16b.tar.gz tor-cf5f52d6947c653b3e44a331428389abf0f1b16b.zip |
configure: Add --disable-module-relay to summary
Closes #32266
Signed-off-by: David Goulet <dgoulet@torproject.org>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 9a903fb11e..487361773d 100644 --- a/configure.ac +++ b/configure.ac @@ -2624,6 +2624,9 @@ PPRINT_SUBTITLE([Modules]) test "x$enable_module_dirauth" != "xno" && value=1 || value=0 PPRINT_PROP_BOOL([Directory Authority (--disable-module-dirauth)], $value) +test "x$enable_module_relay" != "xno" && value=1 || value=0 +PPRINT_PROP_BOOL([Relay (--disable-module-relay)], $value) + AS_ECHO PPRINT_SUBTITLE([Documentation]) |