aboutsummaryrefslogtreecommitdiffstats
path: root/Configure
diff options
context:
space:
mode:
Diffstat (limited to 'Configure')
-rwxr-xr-xConfigure8
1 files changed, 8 insertions, 0 deletions
diff --git a/Configure b/Configure
index 3a421ab4bb..1e82476050 100755
--- a/Configure
+++ b/Configure
@@ -719,6 +719,14 @@ PROCESS_ARGS:
$depflags .= "-DOPENSSL_NO_MDC2 ";
$openssl_algorithm_defines .= "#define OPENSSL_NO_MDC2\n";
}
+ if ($algo eq "EC" || $algo eq "SHA" || $algo eq "SHA1")
+ {
+ push @skip, "ecdsa";
+ $options .= " no-ecdsa";
+ $flags .= "-DOPENSSL_NO_ECDSA ";
+ $depflags .= "-DOPENSSL_NO_ECDSA ";
+ $openssl_algorithm_defines .= "#define OPENSSL_NO_ECDSA\n";
+ }
if ($algo eq "MD5")
{
$no_md5 = 1;