summaryrefslogtreecommitdiffstats
path: root/Configure
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2009-07-08 08:49:17 +0000
committerDr. Stephen Henson <steve@openssl.org>2009-07-08 08:49:17 +0000
commit4e9de7aa3a12712d08b014af49a8ea54e9187cec (patch)
tree41061ec6101619b652e6c8beabca79bc5367be74 /Configure
parentfc007d021e81cd585446e0c62a6983321b76e5f0 (diff)
Delete MD2 from algorithm tables as in 0.9.8-stable. However since this is
a new branch we can also disable it by default.
Diffstat (limited to 'Configure')
-rwxr-xr-xConfigure6
1 files changed, 3 insertions, 3 deletions
diff --git a/Configure b/Configure
index 13d2f294b6..24753273c5 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).