From 605b04f66136f04a7049f6385801505dc17ef929 Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Thu, 19 Feb 2009 09:42:51 +0000 Subject: [PATCH 1/1] Make it possible to disable STORE. --- crypto/store/store.h | 6 ++++++ 1 file changed, 6 insertions(+) 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 + +#ifdef OPENSSL_NO_STORE +#error STORE is disabled. +#endif + #include #ifndef OPENSSL_NO_DEPRECATED #include -- 2.34.1