disable ASM implementation of bcrypt

This commit is contained in:
Enno Rehling 2018-10-23 17:43:11 +02:00
parent 35ed981cd5
commit 6a615ab0cd

View file

@ -53,10 +53,7 @@
/* Just to make sure the prototypes match the actual definitions */
#include "crypt_blowfish.h"
#ifdef __i386__
#define BF_ASM 1
#define BF_SCALE 1
#elif defined(__x86_64__) || defined(__alpha__) || defined(__hppa__)
#if defined(__x86_64__) || defined(__alpha__) || defined(__hppa__)
#define BF_ASM 0
#define BF_SCALE 1
#else