Fix no-gost

Configure had the wrong name for the no-gost option.

Reviewed-by: Richard Levitte <levitte@openssl.org>
This commit is contained in:
Matt Caswell 2016-03-21 15:04:08 +00:00
parent ac19ae151c
commit 168c3b737e
3 changed files with 4 additions and 4 deletions

View File

@ -267,6 +267,7 @@ my @disablables = (
"engine",
"err",
"filenames",
"gost",
"heartbeats",
"hmac",
"hw(-.+)?",
@ -276,7 +277,6 @@ my @disablables = (
"md4",
"md5",
"mdc2",
"md[-_]ghost94",
"multiblock",
"nextprotoneg",
"ocb",

View File

@ -218,8 +218,8 @@ static FUNCTION functions[] = {
#ifndef OPENSSL_NO_MD5
{ FT_md, "md5", dgst_main},
#endif
#ifndef OPENSSL_NO_MD_GHOST94
{ FT_md, "md_ghost94", dgst_main},
#ifndef OPENSSL_NO_GOST
{ FT_md, "gost", dgst_main},
#endif
#ifndef OPENSSL_NO_SHA
{ FT_md, "sha1", dgst_main},

View File

@ -104,7 +104,7 @@ my %md_disabler = (
);
foreach my $cmd (
"md2", "md4", "md5",
"md_ghost94",
"gost",
"sha1", "sha224", "sha256", "sha384", "sha512",
"mdc2", "rmd160", "blake2b512", "blake2s256"
) {