From: Andy Polyakov Date: Mon, 19 Feb 2018 14:19:49 +0000 (+0100) Subject: Configure: engage x25519 assembly support. X-Git-Tag: OpenSSL_1_1_1-pre2~52 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=0e5c8d566029a995d1fa23cac0f828c39519d97f;p=oweals%2Fopenssl.git Configure: engage x25519 assembly support. Reviewed-by: Rich Salz Reviewed-by: Paul Dale (Merged from https://github.com/openssl/openssl/pull/5408) --- diff --git a/Configure b/Configure index 0cc554f652..05618ed731 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"; }