Re: [PHP-CVS] cvs: php-src /ext/standard crypt_blowfish.c php_crypt_r.h

2008-08-14 Thread Pierre Joye
On Thu, Aug 14, 2008 at 7:34 PM, Hannes Magnusson
<[EMAIL PROTECTED]> wrote:
> On Thu, Aug 14, 2008 at 10:45, Pierre Joye <[EMAIL PROTECTED]> wrote:
>> hi Felipe!
>>
>> On Thu, Aug 14, 2008 at 3:13 AM, Felipe Pena <[EMAIL PROTECTED]> wrote:
>>> felipe  Thu Aug 14 01:13:18 2008 UTC
>>>
>>>  Modified files:
>>>/php-src/ext/standard   crypt_blowfish.c php_crypt_r.h
>>>  Log:
>>>  - Fix build on BSD (5_3 and 5_2 are OK)
>>
>> Thanks for the fix!
>>
>> MFH? :)
>
> To the now dead 4_4?
> The commit message says 5_3 and 5_2 don't need the fix.. :)

I read FBSD 5.3, don't ask why :)

Cheers,
-- 
Pierre
http://blog.thepimp.net | http://www.libgd.org

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP-CVS] cvs: php-src /ext/standard crypt_blowfish.c php_crypt_r.h

2008-08-14 Thread Hannes Magnusson
On Thu, Aug 14, 2008 at 10:45, Pierre Joye <[EMAIL PROTECTED]> wrote:
> hi Felipe!
>
> On Thu, Aug 14, 2008 at 3:13 AM, Felipe Pena <[EMAIL PROTECTED]> wrote:
>> felipe  Thu Aug 14 01:13:18 2008 UTC
>>
>>  Modified files:
>>/php-src/ext/standard   crypt_blowfish.c php_crypt_r.h
>>  Log:
>>  - Fix build on BSD (5_3 and 5_2 are OK)
>
> Thanks for the fix!
>
> MFH? :)

To the now dead 4_4?
The commit message says 5_3 and 5_2 don't need the fix.. :)

-Hannes

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP-CVS] cvs: php-src /ext/standard crypt_blowfish.c php_crypt_r.h

2008-08-14 Thread Pierre Joye
hi Felipe!

On Thu, Aug 14, 2008 at 3:13 AM, Felipe Pena <[EMAIL PROTECTED]> wrote:
> felipe  Thu Aug 14 01:13:18 2008 UTC
>
>  Modified files:
>/php-src/ext/standard   crypt_blowfish.c php_crypt_r.h
>  Log:
>  - Fix build on BSD (5_3 and 5_2 are OK)

Thanks for the fix!

MFH? :)

Cheers,
-- 
Pierre

http://blog.thepimp.net | http://www.libgd.org

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php-src /ext/standard crypt_blowfish.c php_crypt_r.h

2008-08-13 Thread Felipe Pena
felipe  Thu Aug 14 01:13:18 2008 UTC

  Modified files:  
/php-src/ext/standard   crypt_blowfish.c php_crypt_r.h 
  Log:
  - Fix build on BSD (5_3 and 5_2 are OK)
  
  
http://cvs.php.net/viewvc.cgi/php-src/ext/standard/crypt_blowfish.c?r1=1.1&r2=1.2&diff_format=u
Index: php-src/ext/standard/crypt_blowfish.c
diff -u php-src/ext/standard/crypt_blowfish.c:1.1 
php-src/ext/standard/crypt_blowfish.c:1.2
--- php-src/ext/standard/crypt_blowfish.c:1.1   Mon Jul 28 11:34:53 2008
+++ php-src/ext/standard/crypt_blowfish.c   Thu Aug 14 01:13:18 2008
@@ -1,5 +1,5 @@
 /*
-  $Id: crypt_blowfish.c,v 1.1 2008/07/28 11:34:53 pajoye Exp $ 
+  $Id: crypt_blowfish.c,v 1.2 2008/08/14 01:13:18 felipe Exp $ 
 */
 /*
  * This code comes from John the Ripper password cracker, with reentrant
@@ -47,6 +47,8 @@
 #else
 #define __CONST
 #endif
+#else
+#define __CONST __const
 #endif
 
 #ifdef __i386__
http://cvs.php.net/viewvc.cgi/php-src/ext/standard/php_crypt_r.h?r1=1.1&r2=1.2&diff_format=u
Index: php-src/ext/standard/php_crypt_r.h
diff -u php-src/ext/standard/php_crypt_r.h:1.1 
php-src/ext/standard/php_crypt_r.h:1.2
--- php-src/ext/standard/php_crypt_r.h:1.1  Mon Jul 28 11:34:53 2008
+++ php-src/ext/standard/php_crypt_r.h  Thu Aug 14 01:13:18 2008
@@ -1,4 +1,4 @@
-/* $Id: php_crypt_r.h,v 1.1 2008/07/28 11:34:53 pajoye Exp $ */
+/* $Id: php_crypt_r.h,v 1.2 2008/08/14 01:13:18 felipe Exp $ */
 /*
+--+
| PHP Version 5|
@@ -32,6 +32,8 @@
 #else
 #define __CONST
 #endif
+#else
+#define __CONST __const
 #endif
 
 void php_init_crypt_r();



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php