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/mips Disable ...



details:   https://anonhg.NetBSD.org/src/rev/94b691d432a0
branches:  trunk
changeset: 321291:94b691d432a0
user:      christos <christos%NetBSD.org@localhost>
date:      Fri Mar 09 12:39:30 2018 +0000

description:
Disable assembly stubs for the big endian variants of mips (could be more
precise? are all of them broken?)

diffstat:

 crypto/external/bsd/openssl/lib/libcrypto/arch/mips/aes.inc      |  2 ++
 crypto/external/bsd/openssl/lib/libcrypto/arch/mips/bn.inc       |  2 ++
 crypto/external/bsd/openssl/lib/libcrypto/arch/mips/crypto.inc   |  2 ++
 crypto/external/bsd/openssl/lib/libcrypto/arch/mips/poly1305.inc |  2 ++
 crypto/external/bsd/openssl/lib/libcrypto/arch/mips/sha.inc      |  2 ++
 5 files changed, 10 insertions(+), 0 deletions(-)

diffs (63 lines):

diff -r c22ee91c6165 -r 94b691d432a0 crypto/external/bsd/openssl/lib/libcrypto/arch/mips/aes.inc
--- a/crypto/external/bsd/openssl/lib/libcrypto/arch/mips/aes.inc       Fri Mar 09 11:57:38 2018 +0000
+++ b/crypto/external/bsd/openssl/lib/libcrypto/arch/mips/aes.inc       Fri Mar 09 12:39:30 2018 +0000
@@ -1,6 +1,8 @@
+.if empty(MACHINE_ARCH:M*eh}
 .PATH.S: ${.PARSEDIR}
 
 #AES_SRCS = aes-mips${"${COPTS:M*-mabi=64*}" == "":?:64}.S
 #AESCPPFLAGS = -DAES_ASM
+.endif
 
 .include "../../aes.inc"
diff -r c22ee91c6165 -r 94b691d432a0 crypto/external/bsd/openssl/lib/libcrypto/arch/mips/bn.inc
--- a/crypto/external/bsd/openssl/lib/libcrypto/arch/mips/bn.inc        Fri Mar 09 11:57:38 2018 +0000
+++ b/crypto/external/bsd/openssl/lib/libcrypto/arch/mips/bn.inc        Fri Mar 09 12:39:30 2018 +0000
@@ -1,5 +1,7 @@
+.if empty(MACHINE_ARCH:M*eh}
 .PATH.S: ${.PARSEDIR}
 
 BN_SRCS = mips${"${COPTS:M*-mabi=64*}" == "":?:64}.S
+.endif
 
 .include "../../bn.inc"
diff -r c22ee91c6165 -r 94b691d432a0 crypto/external/bsd/openssl/lib/libcrypto/arch/mips/crypto.inc
--- a/crypto/external/bsd/openssl/lib/libcrypto/arch/mips/crypto.inc    Fri Mar 09 11:57:38 2018 +0000
+++ b/crypto/external/bsd/openssl/lib/libcrypto/arch/mips/crypto.inc    Fri Mar 09 12:39:30 2018 +0000
@@ -1,6 +1,8 @@
+.if empty(MACHINE_ARCH:M*eh}
 .PATH.S: ${.PARSEDIR}
 
 CRYPTO_SRCS += mips-mont${"${COPTS:M*-mabi=64*}" == "":?:64}.S
+.endif
 CRYPTO_SRCS += libc-memequal.c
 
 .include "../../crypto.inc"
diff -r c22ee91c6165 -r 94b691d432a0 crypto/external/bsd/openssl/lib/libcrypto/arch/mips/poly1305.inc
--- a/crypto/external/bsd/openssl/lib/libcrypto/arch/mips/poly1305.inc  Fri Mar 09 11:57:38 2018 +0000
+++ b/crypto/external/bsd/openssl/lib/libcrypto/arch/mips/poly1305.inc  Fri Mar 09 12:39:30 2018 +0000
@@ -1,3 +1,4 @@
+.if empty(MACHINE_ARCH:M*eh}
 .if !empty(MACHINE_ARCH:Mmips64*)
 
 .PATH.S: ${.PARSEDIR}
@@ -6,5 +7,6 @@
 POLY1305_CPPFLAGS+=-DPOLY1305_ASM
 
 .endif
+.endif
 
 .include "../../poly1305.inc"
diff -r c22ee91c6165 -r 94b691d432a0 crypto/external/bsd/openssl/lib/libcrypto/arch/mips/sha.inc
--- a/crypto/external/bsd/openssl/lib/libcrypto/arch/mips/sha.inc       Fri Mar 09 11:57:38 2018 +0000
+++ b/crypto/external/bsd/openssl/lib/libcrypto/arch/mips/sha.inc       Fri Mar 09 12:39:30 2018 +0000
@@ -1,7 +1,9 @@
+.if empty(MACHINE_ARCH:M*eh}
 .PATH.S: ${.PARSEDIR}
 
 SHA_SRCS += sha1-mips${"${COPTS:M*-mabi=64*}" == "":?:64}.S
 SHA_SRCS += sha512-mips${"${COPTS:M*-mabi=64*}" == "":?:64}.S
 
 SHACPPFLAGS = -DSHA1_ASM
+.endif
 .include "../../sha.inc"



Home | Main Index | Thread Index | Old Index