diff options
author | lloyd <[email protected]> | 2009-09-04 15:37:39 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2009-09-04 15:37:39 +0000 |
commit | c184cd88ab53a8e2c343be0ab3a8517a964789e7 (patch) | |
tree | d6482cb99346e1d14a2181769b59f2b9daad489c /checks | |
parent | 53f3baadaaf6e2475f3e98943ea3e835579715df (diff) |
Add a new option --no-autoload to configure.py. This will produce a minimal
build (only libstate, utils, plus dependencies), which can be extended with
use of --enable-modules.
To add new modules to the set of always-loaded, use 'load_on always' in info.txt
Also fix a few small build problems that popped up when doing a minimal build.
Requested by a user.
Diffstat (limited to 'checks')
-rw-r--r-- | checks/pk_bench.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/checks/pk_bench.cpp b/checks/pk_bench.cpp index a944934fb..88a72afde 100644 --- a/checks/pk_bench.cpp +++ b/checks/pk_bench.cpp @@ -675,6 +675,8 @@ void bench_pk(RandomNumberGenerator& rng, benchmark_dsa_nr<NR_PrivateKey>(rng, seconds, report); #endif +#if defined(BOTAN_HAS_RW) if(algo == "All" || algo == "RW") benchmark_rw(rng, seconds, report); +#endif } |