The 'no-rijndael' option must define OPENSSL_NO_AES because that is
what we look for in crypto/evp.
This commit is contained in:
parent
2413a3975f
commit
ef3dc028ef
1 changed files with 6 additions and 0 deletions
|
@ -638,6 +638,12 @@ PROCESS_ARGS:
|
|||
$flags .= "-DOPENSSL_NO_$algo ";
|
||||
$depflags .= "-DOPENSSL_NO_$algo ";
|
||||
$openssl_algorithm_defines .= "#define OPENSSL_NO_$algo\n";
|
||||
if ($algo eq "RIJNDAEL")
|
||||
{
|
||||
$flags .= "-DOPENSSL_NO_AES ";
|
||||
$depflags .= "-DOPENSSL_NO_AES ";
|
||||
$openssl_algorithm_defines .= "#define OPENSSL_NO_AES\n";
|
||||
}
|
||||
if ($algo eq "DES")
|
||||
{
|
||||
push @skip, "mdc2";
|
||||
|
|
Loading…
Reference in a new issue