aboutsummaryrefslogtreecommitdiffstats
path: root/src/cmd/ca.cpp
diff options
context:
space:
mode:
authorlloyd <[email protected]>2014-02-08 16:01:49 +0000
committerlloyd <[email protected]>2014-02-08 16:01:49 +0000
commit93c361028df3e33b9f6195f7d4b9ffcf47a7fa2c (patch)
tree3fdc838b34dc937ef280899f89aa10a47e005f30 /src/cmd/ca.cpp
parent7def8d303e3cf0f1a27ee8ebcb8ae5137261a361 (diff)
Fix minimized builds. Patch by Markus Wanner sent to botan-devel
Diffstat (limited to 'src/cmd/ca.cpp')
-rw-r--r--src/cmd/ca.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/cmd/ca.cpp b/src/cmd/ca.cpp
index 17d930358..7dba4c7fe 100644
--- a/src/cmd/ca.cpp
+++ b/src/cmd/ca.cpp
@@ -1,5 +1,5 @@
-
#include "apps.h"
+#if defined(BOTAN_HAS_X509_CERTIFICATES)
#include <botan/x509_ca.h>
using namespace Botan;
@@ -61,3 +61,4 @@ int ca_main(int argc, char* argv[])
}
return 0;
}
+#endif