From 13bd299de4a27b9f205f640b2ef31fd68f125538 Mon Sep 17 00:00:00 2001 From: dongresource Date: Wed, 15 Dec 2021 20:35:41 +0100 Subject: [PATCH] Do not use assembly-accelerated bcrypt on i386 Adding the assembly source files to the build system(s) would be more trouble than it's worth, considering we don't make 32-bit builds for much other than satisfying our curiosity. --- vendor/bcrypt/crypt_blowfish.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vendor/bcrypt/crypt_blowfish.c b/vendor/bcrypt/crypt_blowfish.c index 802214a..d64cc60 100644 --- a/vendor/bcrypt/crypt_blowfish.c +++ b/vendor/bcrypt/crypt_blowfish.c @@ -58,7 +58,7 @@ #endif #ifdef __i386__ -#define BF_ASM 1 +#define BF_ASM 0 #define BF_SCALE 1 #elif defined(__x86_64__) || defined(__alpha__) || defined(__hppa__) #define BF_ASM 0