diff options
author | lloyd <[email protected]> | 2009-12-16 00:32:49 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2009-12-16 00:32:49 +0000 |
commit | 87cbaef441c6baba2699a8ea53ac2562c46c772d (patch) | |
tree | a61455bcb4de0e0eab34953f7a53a84b512f34d3 /src/algo_factory | |
parent | 076afc21c2b775d2658f33086b890255f6f2c70f (diff) |
Full working amalgamation build, plus internal-only headers concept.
Diffstat (limited to 'src/algo_factory')
-rw-r--r-- | src/algo_factory/algo_factory.cpp | 2 | ||||
-rw-r--r-- | src/algo_factory/info.txt | 12 | ||||
-rw-r--r-- | src/algo_factory/prov_weight.cpp | 2 |
3 files changed, 11 insertions, 5 deletions
diff --git a/src/algo_factory/algo_factory.cpp b/src/algo_factory/algo_factory.cpp index 22915d97c..f1c2ae3a0 100644 --- a/src/algo_factory/algo_factory.cpp +++ b/src/algo_factory/algo_factory.cpp @@ -6,7 +6,7 @@ */ #include <botan/algo_factory.h> -#include <botan/algo_cache.h> +#include <botan/internal/algo_cache.h> #include <botan/stl_util.h> #include <botan/engine.h> #include <botan/exceptn.h> diff --git a/src/algo_factory/info.txt b/src/algo_factory/info.txt index 4b25c7fc5..eae4b3934 100644 --- a/src/algo_factory/info.txt +++ b/src/algo_factory/info.txt @@ -2,12 +2,18 @@ load_on auto define ALGORITHM_FACTORY -<add> -algo_factory.cpp +<header:public> algo_factory.h +</header:public> + +<header:internal> algo_cache.h +</header:internal> + +<source> +algo_factory.cpp prov_weight.cpp -</add> +</source> <requires> block diff --git a/src/algo_factory/prov_weight.cpp b/src/algo_factory/prov_weight.cpp index d7e84a323..c7c2d8d8d 100644 --- a/src/algo_factory/prov_weight.cpp +++ b/src/algo_factory/prov_weight.cpp @@ -5,7 +5,7 @@ * Distributed under the terms of the Botan license */ -#include <botan/algo_cache.h> +#include <botan/internal/algo_cache.h> namespace Botan { |