summaryrefslogtreecommitdiffstats
path: root/Configure
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2009-07-08 08:50:53 +0000
committerDr. Stephen Henson <steve@openssl.org>2009-07-08 08:50:53 +0000
commitc155d83f5bf3285daddf1a92e836dc238560afca (patch)
tree19c883d2126ebd8b1cba4f9b320c3691a679caeb /Configure
parent5a03e3ac3f51a026813afa603bf1aa7de3d7ddd1 (diff)
Delete MD2 from algorithm tables and default compilation.
Diffstat (limited to 'Configure')
-rwxr-xr-xConfigure6
1 files changed, 3 insertions, 3 deletions
diff --git a/Configure b/Configure
index 31236319b4..aa0ea83432 100755
--- a/Configure
+++ b/Configure
@@ -660,7 +660,8 @@ my $perl;
my %disabled = ( # "what" => "comment" [or special keyword "experimental"]
"gmp" => "default",
"jpake" => "experimental",
- "mdc2" => "default",
+ "md2" => "default",
+ "mdc2" => "default",
"rc5" => "default",
"rfc3779" => "default",
"shared" => "default",
@@ -672,8 +673,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 -DOPENSSL_NO_STORE";
-
+my $default_depflags = " -DOPENSSL_NO_GMP -DOPENSSL_NO_JPAKE -DOPENSSL_NO_MD2 -DOPENSSL_NO_MDC2 -DOPENSSL_NO_RC5 -DOPENSSL_NO_RFC3779 -DOPENSSL_NO_STORE";
# Explicit "no-..." options will be collected in %disabled along with the defaults.
# To remove something from %disabled, use "enable-foo" (unless it's experimental).