aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorlloyd <[email protected]>2008-10-01 16:40:30 +0000
committerlloyd <[email protected]>2008-10-01 16:40:30 +0000
commit01d60d3263845df114d7370bffb3264726b16444 (patch)
treeae3a1bd48e9ae85430a16d7f47724f0dcf710691 /src
parent1c13e56132401ad31aad613c09a4ded7302d1fd5 (diff)
Document dependencies between modules
Diffstat (limited to 'src')
-rw-r--r--src/codec/base64/info.txt4
-rw-r--r--src/codec/bzip2/info.txt4
-rw-r--r--src/codec/hex/info.txt4
-rw-r--r--src/codec/zlib/info.txt4
-rw-r--r--src/core/info.txt2
-rw-r--r--src/core/rng.cpp5
-rw-r--r--src/utils/datastor.cpp3
-rw-r--r--src/utils/info.txt4
8 files changed, 26 insertions, 4 deletions
diff --git a/src/codec/base64/info.txt b/src/codec/base64/info.txt
index c9c05a255..591581afb 100644
--- a/src/codec/base64/info.txt
+++ b/src/codec/base64/info.txt
@@ -4,6 +4,10 @@ define BASE64_CODEC
load_on auto
+<requires>
+filters
+</requires>
+
<add>
base64.cpp
b64_char.cpp
diff --git a/src/codec/bzip2/info.txt b/src/codec/bzip2/info.txt
index efedc097f..51e1feed1 100644
--- a/src/codec/bzip2/info.txt
+++ b/src/codec/bzip2/info.txt
@@ -7,6 +7,10 @@ modset compression
load_on request
+<requires>
+filters
+</requires>
+
<add>
bzip2.h
bzip2.cpp
diff --git a/src/codec/hex/info.txt b/src/codec/hex/info.txt
index 4977742d0..71b33a6ad 100644
--- a/src/codec/hex/info.txt
+++ b/src/codec/hex/info.txt
@@ -4,6 +4,10 @@ define HEX_CODEC
load_on auto
+<requires>
+filters
+</requires>
+
<add>
hex.cpp
hex_char.cpp
diff --git a/src/codec/zlib/info.txt b/src/codec/zlib/info.txt
index c1f1f998c..49e9658a9 100644
--- a/src/codec/zlib/info.txt
+++ b/src/codec/zlib/info.txt
@@ -7,6 +7,10 @@ define COMPRESSOR_ZLIB
load_on request
modset compression
+<requires>
+filters
+</requires>
+
<add>
zlib.h
zlib.cpp
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)
diff --git a/src/utils/datastor.cpp b/src/utils/datastor.cpp
index bff6bcf5b..a2fda1a88 100644
--- a/src/utils/datastor.cpp
+++ b/src/utils/datastor.cpp
@@ -4,9 +4,10 @@
*************************************************/
#include <botan/datastor.h>
-#include <botan/filters.h>
+#include <botan/exceptn.h>
#include <botan/parsing.h>
#include <botan/stl_util.h>
+#include <botan/filters.h>
namespace Botan {
diff --git a/src/utils/info.txt b/src/utils/info.txt
index a1c87ef44..b20a16a56 100644
--- a/src/utils/info.txt
+++ b/src/utils/info.txt
@@ -8,6 +8,10 @@ load_on auto
tru64 -> rt
</libs>
+<requires>
+filters
+</requires>
+
<add>
bit_ops.h
bswap.h