fix alpha

This commit is contained in:
christos 2023-05-13 18:59:36 +00:00
parent 8c2ceb1bdd
commit 30e1e2b7fc
2 changed files with 8 additions and 1 deletions

View File

@ -0,0 +1,5 @@
# $NetBSD: ec.inc,v 1.1 2023/05/13 18:59:36 christos Exp $
ECNI=yes
ECNONISTZ=yes
.include "../../ec.inc"

View File

@ -1,4 +1,4 @@
# $NetBSD: ec.inc,v 1.11 2023/05/11 20:08:59 christos Exp $
# $NetBSD: ec.inc,v 1.12 2023/05/13 18:59:36 christos Exp $
.PATH: ${OPENSSLSRC}/crypto/ec
@ -36,8 +36,10 @@ ecx_key.c \
ecx_meth.c \
.if defined(ECNI)
.if !defined(ECNONISTZ)
COPTS.ecp_nistz256.c+=-Wno-error=stack-protector
EC_SRCS+= ecp_nistz256.c
.endif
.if empty(ECCPPFLAGS:M*OPENSSL_NO_EC_NISTP_64_GCC_128*)
EC_SRCS+= ecp_nistp224.c ecp_nistp256.c ecp_nistp521.c ecp_nistputil.c
.endif