diff options
author | lloyd <[email protected]> | 2013-12-14 15:03:32 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2013-12-14 15:03:32 +0000 |
commit | cbca09dab2616a14d9ce6853a8cdfb62c029eada (patch) | |
tree | c48b8535f413f368ba1e7c7a99bd5d1a104f8960 /checks/ecdsa.cpp | |
parent | 815966a9e1c3bec13c20d294fdc4e2aab16a614d (diff) |
Make it possible to remove Boost dependency by disabling a few modules
(though including X.509 and TLS).
Diffstat (limited to 'checks/ecdsa.cpp')
-rw-r--r-- | checks/ecdsa.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/checks/ecdsa.cpp b/checks/ecdsa.cpp index a43de69c5..2506e1389 100644 --- a/checks/ecdsa.cpp +++ b/checks/ecdsa.cpp @@ -8,7 +8,7 @@ #include "validate.h" -#if defined(BOTAN_HAS_ECDSA) +#if defined(BOTAN_HAS_ECDSA) && defined(BOTAN_HAS_X509) #include <botan/botan.h> #include <botan/pubkey.h> |