diff options
author | lloyd <[email protected]> | 2009-07-01 21:59:19 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2009-07-01 21:59:19 +0000 |
commit | 21308960d04c28e90ee63485b4d95636f4fe9240 (patch) | |
tree | 10fff059d3ad0127f20f61001dce1c6be808ada1 /doc | |
parent | 461602d1d2662cdad9f898bc350d9074b267cc6a (diff) |
Change the makefile template language somewhat. Previously variables
had been denoted with @{var:NAME}, this has changed to %{NAME}. This is
pretty much a wash for configure.pl but it makes it much easier to process
the templates using Python's string.Template. The logic being the 'var:'
prefix had been to support conditional statements in the templates (using
an 'if:' prefix), but this functionality was not being used and support
for it is removed from configure.pl in this revision.
For a similiar reason, rename a number of template variables with hyphens
in their name to use underscores instead. This is slightly more consistent
anyway (since many variable names had already used _ instead of -) but more
importantly makes them much easier to deal with using aforementioned Python
template code.
This should not result in any user-visible change (unless I messed up).
Diffstat (limited to 'doc')
-rw-r--r-- | doc/log.txt | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/doc/log.txt b/doc/log.txt index e6ca6bdcd..e41262747 100644 --- a/doc/log.txt +++ b/doc/log.txt @@ -1,12 +1,13 @@ * 1.8.3-pre, 2009-??-?? - - Improve handling of low-entropy situations during PRNG seeding - - Use an input insensitive implementation of same_mem instead of memcmp - - Change random device polling to prefer /dev/urandom over /dev/random - Add the Skein-512 SHA-3 candidate hash function - Add the XTS block cipher mode from IEEE P1619 - - Provide a default value for AutoSeeded_RNG::reseed + - Improve handling of low-entropy situations during PRNG seeding + - Change random device polling to prefer /dev/urandom over /dev/random + - Use an input insensitive implementation of same_mem instead of memcmp - Correct DataSource::discard_next to return the number of discarded bytes + - Various changes to the makefile template language for easier parsing + - Provide a default value for AutoSeeded_RNG::reseed - Fix Gentoo bug 272242 * 1.8.2, 2009-04-07 |