diff options
author | Jack Lloyd <[email protected]> | 2016-08-23 12:13:22 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2016-08-23 12:13:22 -0400 |
commit | 3c39fd81b905db2532c6e63b3f5f13be706ca7c1 (patch) | |
tree | ef331211052dc4d7a595bcfc18c4ddfb92f3764b /src/lib/prov/pkcs11/p11_rsa.h | |
parent | 10eb64e54d18e83c3c0c0697314465daa106c8ae (diff) |
Work around some amalgamation issues.
I think probably what these headers had should work, but end up
confusing the generator and breaking the build:
https://travis-ci.org/randombit/botan/jobs/154197472
Diffstat (limited to 'src/lib/prov/pkcs11/p11_rsa.h')
-rw-r--r-- | src/lib/prov/pkcs11/p11_rsa.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/lib/prov/pkcs11/p11_rsa.h b/src/lib/prov/pkcs11/p11_rsa.h index bf1422dc2..2739cf3e5 100644 --- a/src/lib/prov/pkcs11/p11_rsa.h +++ b/src/lib/prov/pkcs11/p11_rsa.h @@ -10,13 +10,12 @@ #define BOTAN_P11_RSA_H__ #include <botan/build.h> -#if defined(BOTAN_HAS_RSA) - #include <botan/p11.h> #include <botan/p11_session.h> #include <botan/p11_object.h> -#include <botan/rsa.h> +#if defined(BOTAN_HAS_RSA) +#include <botan/rsa.h> #include <utility> namespace Botan { |