From 4926498a67794ff27d1dd5795ce8b75e09818ed8 Mon Sep 17 00:00:00 2001 From: Brad Smith Date: Fri, 7 May 2021 01:33:27 -0400 Subject: [PATCH] CRC32 on OpenBSD/powerpc64. closes #1828 --- mysys/crc32/crc32c.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mysys/crc32/crc32c.cc b/mysys/crc32/crc32c.cc index 082d467e7da..b48e744a663 100644 --- a/mysys/crc32/crc32c.cc +++ b/mysys/crc32/crc32c.cc @@ -517,12 +517,12 @@ static int arch_ppc_probe(void) { return arch_ppc_crc32; } -#elif _AIX +#elif defined(_AIX) || defined(__OpenBSD__) static int arch_ppc_probe(void) { arch_ppc_crc32 = 0; #if defined(__powerpc64__) - // AIX 7.1+ has vector crypto features on all POWER 8+ + // AIX 7.1+/OpenBSD has vector crypto features on all POWER 8+ arch_ppc_crc32 = 1; #endif /* __powerpc64__ */