aboutsummaryrefslogtreecommitdiff
path: root/Configure
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2018-02-19 15:19:49 +0100
committerAndy Polyakov <appro@openssl.org>2018-02-21 10:14:09 +0100
commit0e5c8d566029a995d1fa23cac0f828c39519d97f (patch)
tree6c8e8f8532761ddb2281127fcecc1dab50af44d2 /Configure
parentc521e4392f8423af4bc64cdee57495e39e4e7a07 (diff)
downloadopenssl-0e5c8d566029a995d1fa23cac0f828c39519d97f.zip
openssl-0e5c8d566029a995d1fa23cac0f828c39519d97f.tar.gz
openssl-0e5c8d566029a995d1fa23cac0f828c39519d97f.tar.bz2
Configure: engage x25519 assembly support.
Reviewed-by: Rich Salz <rsalz@openssl.org> Reviewed-by: Paul Dale <paul.dale@oracle.com> (Merged from https://github.com/openssl/openssl/pull/5408)
Diffstat (limited to 'Configure')
-rwxr-xr-xConfigure3
1 files changed, 3 insertions, 0 deletions
diff --git a/Configure b/Configure
index 0cc554f..05618ed 100755
--- a/Configure
+++ b/Configure
@@ -1341,6 +1341,9 @@ unless ($disabled{asm}) {
if ($target{ec_asm_src} =~ /ecp_nistz256/) {
push @{$config{defines}}, "ECP_NISTZ256_ASM";
}
+ if ($target{ec_asm_src} =~ /x25519/) {
+ push @{$config{defines}}, "X25519_ASM";
+ }
if ($target{padlock_asm_src} ne $table{DEFAULTS}->{padlock_asm_src}) {
push @{$config{defines}}, "PADLOCK_ASM";
}