diff options
author | lloyd <[email protected]> | 2012-04-20 16:48:27 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2012-04-20 16:48:27 +0000 |
commit | cdeb2b9a08c9c55a0e1c310253797691af225523 (patch) | |
tree | b0cdf7212f5f8f9334e40e32f935131ee4b3ba12 /checks/pk.cpp | |
parent | 538804d54463fca05621990662f34a6251f0adf7 (diff) |
Some fixes for very minimal builds (typically due to --no-autoload)
Diffstat (limited to 'checks/pk.cpp')
-rw-r--r-- | checks/pk.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/checks/pk.cpp b/checks/pk.cpp index 6291b1566..d45fc59fe 100644 --- a/checks/pk.cpp +++ b/checks/pk.cpp @@ -14,6 +14,12 @@ #include <botan/botan.h> #include <botan/oids.h> +#if defined(BOTAN_HAS_PUBLIC_KEY_CRYPTO) + #include <botan/x509_key.h> + #include <botan/pkcs8.h> + #include <botan/pubkey.h> +#endif + #if defined(BOTAN_HAS_RSA) #include <botan/rsa.h> #endif |