fix build

This commit is contained in:
christos 2023-05-15 14:04:38 +00:00
parent dc2384b526
commit a15acc0ca9
3 changed files with 5 additions and 2 deletions

View File

@ -1,4 +1,4 @@
.PATH.S: ${.PARSEDIR}
BN_SRCS = ppc.S ppc-mont.S ppc64-mont.S
BN_SRCS = ppc.S ppc-mont.S ppc64-mont.S bn_ppc.c
CPPFLAGS += -DOPENSSL_BN_ASM_MONT
.include "../../bn.inc"

View File

@ -1,5 +1,5 @@
.PATH.S: ${.PARSEDIR}
CHACHA_SRCS = chacha-ppc.S
CHACHA_SRCS = chacha-ppc.S chacha_ppc.c
.include "../../chacha.inc"

View File

@ -1,8 +1,11 @@
.PATH.S: ${.PARSEDIR}
EC_SRCS += \
ecp_nistz256-ppc64.S \
ecp_nistp521-ppc64.S \
ecp_ppc.c \
x25519-ppc64.S
ECCPPFLAGS+= -DX25519_ASM
ECNI=yes
.include "../../ec.inc"