Make the no-err option work properly

This commit is contained in:
Richard Levitte
2003-02-18 12:14:57 +00:00
parent 26e9724458
commit 758f942b88
3 changed files with 18 additions and 0 deletions

View File

@@ -692,6 +692,11 @@ PROCESS_ARGS:
$flags .= "-DOPENSSL_NO_ASM ";
$openssl_other_defines .= "#define OPENSSL_NO_ASM\n";
}
elsif (/^no-err$/)
{
$flags .= "-DOPENSSL_NO_ERR ";
$openssl_other_defines .= "#define OPENSSL_NO_ERR\n";
}
elsif (/^no-hw-(.+)$/)
{
my $hw=$1;