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:
parent
5207a7b1c1
commit
8c794668c7
1 changed files with 3 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue