summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2009-02-19 09:42:51 +0000
committerRichard Levitte <levitte@openssl.org>2009-02-19 09:42:51 +0000
commit605b04f66136f04a7049f6385801505dc17ef929 (patch)
tree45a59d77c92739894cb58a844ec33cc5766cd506
parent97132a0f8edb1034e59acce24c3db1264559d937 (diff)
downloadopenssl-new-605b04f66136f04a7049f6385801505dc17ef929.tar.gz
Make it possible to disable STORE.
-rw-r--r--crypto/store/store.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/crypto/store/store.h b/crypto/store/store.h
index fb4af3d33c..0a28c7d5a2 100644
--- a/crypto/store/store.h
+++ b/crypto/store/store.h
@@ -59,6 +59,12 @@
#ifndef HEADER_STORE_H
#define HEADER_STORE_H
+#include <openssl/opensslconf.h>
+
+#ifdef OPENSSL_NO_STORE
+#error STORE is disabled.
+#endif
+
#include <openssl/ossl_typ.h>
#ifndef OPENSSL_NO_DEPRECATED
#include <openssl/evp.h>