Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/crypto/external/bsd/openssl/lib/libcrypto/arch/arm fix the b...



details:   https://anonhg.NetBSD.org/src/rev/bcf1c6718823
branches:  trunk
changeset: 806881:bcf1c6718823
user:      christos <christos%NetBSD.org@localhost>
date:      Sun Mar 15 18:58:09 2015 +0000

description:
fix the big endian builds. Perhaps just remove the MAX define for everyone?

diffstat:

 crypto/external/bsd/openssl/lib/libcrypto/arch/arm/crypto.inc |  5 +++++
 1 files changed, 5 insertions(+), 0 deletions(-)

diffs (17 lines):

diff -r 002196e3c33c -r bcf1c6718823 crypto/external/bsd/openssl/lib/libcrypto/arch/arm/crypto.inc
--- a/crypto/external/bsd/openssl/lib/libcrypto/arch/arm/crypto.inc     Sun Mar 15 18:31:29 2015 +0000
+++ b/crypto/external/bsd/openssl/lib/libcrypto/arch/arm/crypto.inc     Sun Mar 15 18:58:09 2015 +0000
@@ -3,8 +3,13 @@
 CPUID = yes
 CPPFLAGS += -DOPENSSL_BN_ASM_MONT -DOPENSSL_BN_ASM_GF2m
 .if ${MACHINE_ARCH:M*armv4*} == ""
+.      if ${MACHINE_ARCH} == "earmeb"
+CPPFLAGS += -D__ARM_MAX_ARCH__=5
+.      else
 CPPFLAGS += -D__ARM_MAX_ARCH__=8
+.endif
 .else
 CPPFLAGS += -D__ARM_MAX_ARCH__=4
 .endif
 .include "../../crypto.inc"
+



Home | Main Index | Thread Index | Old Index