X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=configure.ac;h=2e2b90321cbdcd7fe8203fd81f0a98a959bc6ad7;hb=7fb21027ff8726fec229ef0a55b84263be0c18d0;hp=22133e07d025d971371d3296f5bc82b0e408801b;hpb=75bf71e92c81b966df11ad3c00228658f46a6e8f;p=oweals%2Fgnunet.git diff --git a/configure.ac b/configure.ac index 22133e07d..2e2b90321 100644 --- a/configure.ac +++ b/configure.ac @@ -725,6 +725,18 @@ AC_ARG_ENABLE(experimental, AC_MSG_RESULT($enable_experimental) AM_CONDITIONAL([HAVE_EXPERIMENTAL], [test "x$enable_experimental" = "xyes"]) +# should malicious code be compiled (code used for testing with malicious peers) +enable_malicious=0 +AC_MSG_CHECKING(whether to compile malicious code) +AC_ARG_ENABLE(malicious, + [AS_HELP_STRING([--enable-malicious], + [enable compiling malicious code (only for developers for testing)])], + [enable_malicious=1], + [enable_malicious=0]) +AC_MSG_RESULT($enable_malicious) +AM_CONDITIONAL([HAVE_MALICIOUS], [test "x$enable_malicious" = "x1"]) +AC_DEFINE_UNQUOTED([HAVE_MALICIOUS], $enable_malicious, [Compile malicious code]) + # gcov compilation use_gcov=no AC_ARG_ENABLE([coverage], AS_HELP_STRING([--enable-coverage],