summaryrefslogtreecommitdiff
path: root/crypto
diff options
context:
space:
mode:
authorrin <rin@NetBSD.org>2023-07-08 23:42:48 +0000
committerrin <rin@NetBSD.org>2023-07-08 23:42:48 +0000
commit72291f498126dbbeb97f9e83bb05c6b14ddb522d (patch)
tree0df440a0e841d207fac2d88638b97eaeb472ea74 /crypto
parentb02f4634a1d30688984c5db2ec3e5f30943efbab (diff)
openssl.old: Remove OPENSSL_NO_EC_NISTP_64_GCC_128 hack for alpha.
Unaligned memory access reported in PR lib/55701 has been fixed by upstream commit: https://github.com/openssl/openssl/commit/77286fe3ec6b9777934e67e35f3b7007143b0734 Actually, kernel no longer complains with machdep.unaligned_print=1, for sshd(8), ssh(1), and full ATF run.
Diffstat (limited to 'crypto')
-rw-r--r--crypto/external/bsd/openssl.old/include/openssl/opensslconf.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/external/bsd/openssl.old/include/openssl/opensslconf.h b/crypto/external/bsd/openssl.old/include/openssl/opensslconf.h
index 9f610f3751e..9432ad9b1fa 100644
--- a/crypto/external/bsd/openssl.old/include/openssl/opensslconf.h
+++ b/crypto/external/bsd/openssl.old/include/openssl/opensslconf.h
@@ -55,7 +55,7 @@ extern "C" {
* This seems broken on big-endian or strictly-aligned architectures.
*/
#if !defined(_LP64) || \
- defined(__AARCH64EB__) || defined(__alpha__) || defined(__sparc64__)
+ defined(__AARCH64EB__) || defined(__sparc64__)
# ifndef OPENSSL_NO_EC_NISTP_64_GCC_128
# define OPENSSL_NO_EC_NISTP_64_GCC_128
# endif