diff options
author | Karsten Loesing <karsten.loesing@gmx.net> | 2009-07-05 20:48:16 +0200 |
---|---|---|
committer | Karsten Loesing <karsten.loesing@gmx.net> | 2009-07-05 20:48:16 +0200 |
commit | c0b6cb132baaf9cf259bfb09e14c1128d7abc9d6 (patch) | |
tree | c3fdbed1a09dcc86fbcef74d16bc665e7ee05def /configure.in | |
parent | 4d6af73db88e409764f43fc6cdaa432d667becf3 (diff) | |
download | tor-c0b6cb132baaf9cf259bfb09e14c1128d7abc9d6.tar.gz tor-c0b6cb132baaf9cf259bfb09e14c1128d7abc9d6.zip |
If configured, write entry-node statistics to disk periodically.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/configure.in b/configure.in index 844211588d..0f83207991 100644 --- a/configure.in +++ b/configure.in @@ -99,6 +99,13 @@ if test "$enable_geoip_stats" = "yes"; then AC_DEFINE(ENABLE_GEOIP_STATS, 1, [Defined if we try to collect per-country statistics]) fi +AC_ARG_ENABLE(entry-stats, + AS_HELP_STRING(--enable-entry-stats, enable code for entry guards to collect per-country statistics)) + +if test "$enable_entry_stats" = "yes"; then + AC_DEFINE(ENABLE_ENTRY_STATS, 1, [Defined if we try to collect per-country statistics]) +fi + AC_ARG_ENABLE(gcc-warnings, AS_HELP_STRING(--enable-gcc-warnings, enable verbose warnings)) |