summaryrefslogtreecommitdiffstats
path: root/Configure
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2009-02-19 09:43:18 +0000
committerRichard Levitte <levitte@openssl.org>2009-02-19 09:43:18 +0000
commitae3b4f23364844b83c1665d635b106189b60f9a7 (patch)
tree138671f85ea348307c1a79e8ebf78d44f016694d /Configure
parent605b04f66136f04a7049f6385801505dc17ef929 (diff)
Make STORE an experimental feature.
Diffstat (limited to 'Configure')
-rwxr-xr-xConfigure3
1 files changed, 2 insertions, 1 deletions
diff --git a/Configure b/Configure
index 3fabec567f..ba60a51524 100755
--- a/Configure
+++ b/Configure
@@ -658,6 +658,7 @@ my %disabled = ( # "what" => "comment" [or special keyword "experimental
"rc5" => "default",
"rfc3779" => "default",
"shared" => "default",
+ "store" => "experimental",
"zlib" => "default",
"zlib-dynamic" => "default"
);
@@ -665,7 +666,7 @@ my @experimental = ();
# This is what $depflags will look like with the above defaults
# (we need this to see if we should advise the user to run "make depend"):
-my $default_depflags = " -DOPENSSL_NO_GMP -DOPENSSL_NO_JPAKE -DOPENSSL_NO_MDC2 -DOPENSSL_NO_RC5 -DOPENSSL_NO_RFC3779";
+my $default_depflags = " -DOPENSSL_NO_GMP -DOPENSSL_NO_JPAKE -DOPENSSL_NO_MDC2 -DOPENSSL_NO_RC5 -DOPENSSL_NO_RFC3779 -DOPENSSL_NO_STORE";
# Explicit "no-..." options will be collected in %disabled along with the defaults.