pajoye Mon Jun 8 08:45:36 2009 UTC Modified files: /php-src/ext/standard crypt_blowfish.c Log: - MFB: sync with 1.0.2, improve perf x86-64 (patch by Solar Designer) http://cvs.php.net/viewvc.cgi/php-src/ext/standard/crypt_blowfish.c?r1=1.2&r2=1.3&diff_format=u Index: php-src/ext/standard/crypt_blowfish.c diff -u php-src/ext/standard/crypt_blowfish.c:1.2 php-src/ext/standard/crypt_blowfish.c:1.3 --- php-src/ext/standard/crypt_blowfish.c:1.2 Thu Aug 14 01:13:18 2008 +++ php-src/ext/standard/crypt_blowfish.c Mon Jun 8 08:45:36 2009 @@ -1,5 +1,5 @@ /* - $Id: crypt_blowfish.c,v 1.2 2008/08/14 01:13:18 felipe Exp $ + $Id: crypt_blowfish.c,v 1.3 2009/06/08 08:45:36 pajoye Exp $ */ /* * This code comes from John the Ripper password cracker, with reentrant @@ -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
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php