diff options
author | lloyd <[email protected]> | 2008-10-01 16:40:30 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2008-10-01 16:40:30 +0000 |
commit | 01d60d3263845df114d7370bffb3264726b16444 (patch) | |
tree | ae3a1bd48e9ae85430a16d7f47724f0dcf710691 /src/core | |
parent | 1c13e56132401ad31aad613c09a4ded7302d1fd5 (diff) |
Document dependencies between modules
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/info.txt | 2 | ||||
-rw-r--r-- | src/core/rng.cpp | 5 |
2 files changed, 4 insertions, 3 deletions
diff --git a/src/core/info.txt b/src/core/info.txt index 6c031d36f..7e8fb3c76 100644 --- a/src/core/info.txt +++ b/src/core/info.txt @@ -10,7 +10,7 @@ sha1 sha2 hmac filters -libstate +hex timer_base </requires> diff --git a/src/core/rng.cpp b/src/core/rng.cpp index fec9641ff..05746f188 100644 --- a/src/core/rng.cpp +++ b/src/core/rng.cpp @@ -4,19 +4,20 @@ *************************************************/ #include <botan/rng.h> -#include <botan/lookup.h> #include <botan/util.h> #include <botan/parsing.h> #include <botan/timers.h> #if defined(BOTAN_HAS_RANDPOOL) + #include <botan/lookup.h> #include <botan/randpool.h> -#endif #if defined(BOTAN_HAS_X931_RNG) #include <botan/x931_rng.h> #endif +#endif + #if defined(BOTAN_HAS_TIMER_HARDWARE) #include <botan/tm_hard.h> #elif defined(BOTAN_HAS_TIMER_POSIX) |