summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkettenis <>2020-06-28 07:50:57 +0000
committerkettenis <>2020-06-28 07:50:57 +0000
commitc03f31d16a5715c0a51d142c77e80ab7b6fb18d1 (patch)
treee1f03e018dadac839ce946302077e00c0ad49d34
parent0f164cb73d243a909a07b3c6ed09629b0b6349d0 (diff)
downloadopenbsd-c03f31d16a5715c0a51d142c77e80ab7b6fb18d1.tar.gz
openbsd-c03f31d16a5715c0a51d142c77e80ab7b6fb18d1.tar.bz2
openbsd-c03f31d16a5715c0a51d142c77e80ab7b6fb18d1.zip
Switch back to bn_mul_mont_int since the bn_mul_mont_fpu64 code isn't
hooked up and the lack of a bn_mul_mont_int implementation results in undefined references.
-rw-r--r--src/lib/libcrypto/arch/powerpc64/Makefile.inc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/libcrypto/arch/powerpc64/Makefile.inc b/src/lib/libcrypto/arch/powerpc64/Makefile.inc
index 7afecde44d..3806ee34ab 100644
--- a/src/lib/libcrypto/arch/powerpc64/Makefile.inc
+++ b/src/lib/libcrypto/arch/powerpc64/Makefile.inc
@@ -1,4 +1,4 @@
1# $OpenBSD: Makefile.inc,v 1.2 2020/06/26 00:39:59 drahn Exp $ 1# $OpenBSD: Makefile.inc,v 1.3 2020/06/28 07:50:57 kettenis Exp $
2 2
3# powerpc-specific libcrypto build rules 3# powerpc-specific libcrypto build rules
4 4
@@ -11,8 +11,8 @@ SRCS+= aes_core.c aes_cbc.c
11SRCS+= bf_enc.c 11SRCS+= bf_enc.c
12# bn 12# bn
13SSLASM+= bn ppc bn-ppc 13SSLASM+= bn ppc bn-ppc
14#SSLASM+= bn ppc-mont ppc-mont # bn_mul_mont_int 14SSLASM+= bn ppc-mont ppc-mont # bn_mul_mont_int
15SSLASM+= bn ppc64-mont ppc64-mont # bn_mul_mont_fpu64 15#SSLASM+= bn ppc64-mont ppc64-mont # bn_mul_mont_fpu64
16CFLAGS+= -DOPENSSL_BN_ASM_MONT 16CFLAGS+= -DOPENSSL_BN_ASM_MONT
17# camellia 17# camellia
18SRCS+= camellia.c cmll_cbc.c cmll_misc.c 18SRCS+= camellia.c cmll_cbc.c cmll_misc.c