Fix compilation on 32bit platforms

Disable usage of the assembly source file in crypt_blowfish
which was confined to i386 platform. i386 platform is on
its way out and wesnoth's usecase wouldn't benefit from
assembly here anyway.
This commit is contained in:
loonycyborg 2018-02-23 13:57:14 +03:00
parent 5207a7b1c1
commit 8c794668c7

View file

@ -54,7 +54,9 @@
#include "crypt_blowfish.h"
#ifdef __i386__
#define BF_ASM 1
//#define BF_ASM 1
// ASM source isn't used in wesnoth's build process
#define BF_ASM 0
#define BF_SCALE 1
#elif defined(__x86_64__) || defined(__alpha__) || defined(__hppa__)
#define BF_ASM 0