diff options
author | lloyd <lloyd@randombit.net> | 2009-09-04 16:12:44 +0000 |
---|---|---|
committer | lloyd <lloyd@randombit.net> | 2009-09-04 16:12:44 +0000 |
commit | 57c85454d803121374306701049b7dc5ef4747eb (patch) | |
tree | d13bcd9c2dd141db07de3a19f2e5a20cb49a358d /doc | |
parent | f7595eeae651ff36709793989fd1688303915f5a (diff) | |
parent | c184cd88ab53a8e2c343be0ab3a8517a964789e7 (diff) |
propagate from branch 'net.randombit.botan.1_8' (head 75371777750b63ef94693602202c5104f217a987)
to branch 'net.randombit.botan' (head 3f53f01c349eeee89288b1922fbde45b283c958c)
Diffstat (limited to 'doc')
-rw-r--r-- | doc/log.txt | 2 | ||||
-rwxr-xr-x | doc/scripts/configure.pl | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/doc/log.txt b/doc/log.txt index e1b7a13c1..345e91d71 100644 --- a/doc/log.txt +++ b/doc/log.txt @@ -6,6 +6,8 @@ - Minor speedups to the Turing key schedule * 1.8.7-pre, 2009-??-?? + - Fix processing multiple messages in XTS mode + - Add --no-autoload option to configure.py, for minimized builds * 1.8.6, 2009-08-13 - Add Cryptobox, a set of simple password-based encryption routines diff --git a/doc/scripts/configure.pl b/doc/scripts/configure.pl index 592eb2bff..6cf43e5e6 100755 --- a/doc/scripts/configure.pl +++ b/doc/scripts/configure.pl @@ -520,6 +520,7 @@ sub scan_modules { next unless(module_runs_on($config, \%modinfo, $mod, 0)); if($modinfo{'load_on'} eq 'auto' or + $modinfo{'load_on'} eq 'always' or ($modinfo{'load_on'} eq 'asm_ok' and $$config{'asm_ok'})) { my %maybe_load = (); |