From 4ab529f05830f2a8d07c72d8052dae59d222e1dd Mon Sep 17 00:00:00 2001 From: Pierre Joye Date: Mon, 8 Jun 2009 08:45:36 +0000 Subject: [PATCH] - MFB: sync with 1.0.2, improve perf x86-64 (patch by Solar Designer) --- ext/standard/crypt_blowfish.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/standard/crypt_blowfish.c b/ext/standard/crypt_blowfish.c index f470b66609..b640a1081b 100644 --- a/ext/standard/crypt_blowfish.c +++ b/ext/standard/crypt_blowfish.c @@ -54,7 +54,7 @@ #ifdef __i386__ #define BF_ASM 0 #define BF_SCALE 1 -#elif defined(__alpha__) || defined(__hppa__) +#elif defined(__x86_64__) || defined(__alpha__) || defined(__hppa__) #define BF_ASM 0 #define BF_SCALE 1 #else -- 2.50.1