[PHP-CVS] cvs: php-src /ext/standard config.m4

2008-08-25 Thread Jani Taskinen
janiMon Aug 25 12:14:48 2008 UTC Modified files: /php-src/ext/standard config.m4 Log: - Nuke duplicate macro call http://cvs.php.net/viewvc.cgi/php-src/ext/standard/config.m4?r1=1.90r2=1.91diff_format=u Index: php-src/ext/standard/config.m4 diff -u

Re: [PHP-CVS] cvs: php-src /ext/standard config.m4 crypt_freesec.c crypt_freesec.h

2008-08-25 Thread Jani Taskinen
This was fun thread to read: Blind leading blind.. Fix after fix to fix something that isn't broken. :) Pierre: There are other OSes than win32 and they're priority #1, Winblows is the last. Please don't clutter the code with this win32 mania of yours. --Jani Arnaud Le Blanc wrote: Hi,

Re: [PHP-CVS] cvs: php-src /ext/standard config.m4 crypt_freesec.c crypt_freesec.h

2008-08-25 Thread Pierre Joye
hi, On Mon, Aug 25, 2008 at 2:52 PM, Jani Taskinen [EMAIL PROTECTED] wrote: This was fun thread to read: Blind leading blind.. Fix after fix to fix something that isn't broken. :) Pierre: There are other OSes than win32 and they're priority #1, Winblows is the last. Please don't clutter the

[PHP-CVS] cvs: php-src /ext/standard config.m4 crypt_freesec.c crypt_freesec.h

2008-08-25 Thread Jani Taskinen
janiMon Aug 25 13:42:47 2008 UTC Modified files: /php-src/ext/standard config.m4 crypt_freesec.c crypt_freesec.h Log: - Nuke unncessary checks already done elsewhere (ZEND) - Use the correct type header files if available. (win32 does what it does) -

Re: [PHP-CVS] cvs: php-src /ext/standard config.m4 crypt_freesec.c crypt_freesec.h

2008-08-23 Thread Pierre Joye
hi Arnaud, this commit breaks the windows build. Parts of it makes little sense, see below: On Sat, Aug 23, 2008 at 3:57 PM, Arnaud Le Blanc [EMAIL PROTECTED] wrote: lbarnaudSat Aug 23 13:57:02 2008 UTC Modified files: /php-src/ext/standard config.m4 crypt_freesec.c

Re: [PHP-CVS] cvs: php-src /ext/standard config.m4 crypt_freesec.c crypt_freesec.h

2008-08-23 Thread Arnaud Le Blanc
Hi, On Saturday 23 August 2008 18:50:37 Pierre Joye wrote: -__inline int +static inline int __inline is known on gcc and windows, adding a define for solaris sounds more appropriate. The commit adds AC_C_INLINE in config.m4, which defines inline appropriatly to __inline or __inline__

Re: [PHP-CVS] cvs: php-src /ext/standard config.m4 crypt_freesec.c crypt_freesec.h

2008-08-23 Thread Pierre Joye
hi, On Sat, Aug 23, 2008 at 7:57 PM, Arnaud Le Blanc [EMAIL PROTECTED] wrote: The commit adds AC_C_INLINE in config.m4, which defines inline appropriatly to __inline or __inline__ if the compiler does not know the inline keyword. Basically it does what you added in your commit, but without

Re: [PHP-CVS] cvs: php-src /ext/standard config.m4 crypt_freesec.c crypt_freesec.h

2008-08-23 Thread Arnaud Le Blanc
Hi, On Saturday 23 August 2008 20:16:16 Pierre Joye wrote: hi, +# ifndef HAVE_U_INT32_T + typedef uint32_t u_int32_t; +# endif +#endif I don't understand this part. If HAVE_U_INT32_T is not defined, you still use u_int32_t? If HAVE_U_INT32_T is not defined that means

Re: [PHP-CVS] cvs: php-src /ext/standard config.m4 crypt_freesec.c crypt_freesec.h

2008-08-23 Thread Pierre Joye
On Sat, Aug 23, 2008 at 9:15 PM, Arnaud Le Blanc [EMAIL PROTECTED] wrote: Hi, On Saturday 23 August 2008 20:16:16 Pierre Joye wrote: hi, +# ifndef HAVE_U_INT32_T + typedef uint32_t u_int32_t; +# endif +#endif I don't understand this part. If HAVE_U_INT32_T is not defined,

Re: [PHP-CVS] cvs: php-src /ext/standard config.m4 crypt_freesec.c crypt_freesec.h

2008-08-23 Thread Arnaud Le Blanc
On Saturday 23 August 2008 21:21:16 Pierre Joye wrote: On Sat, Aug 23, 2008 at 9:15 PM, Arnaud Le Blanc [EMAIL PROTECTED] wrote: Hi, On Saturday 23 August 2008 20:16:16 Pierre Joye wrote: hi, +# ifndef HAVE_U_INT32_T + typedef uint32_t u_int32_t; +# endif +#endif

Re: [PHP-CVS] cvs: php-src /ext/standard config.m4 crypt_freesec.c crypt_freesec.h

2008-08-23 Thread Pierre Joye
On Sat, Aug 23, 2008 at 9:34 PM, Arnaud Le Blanc [EMAIL PROTECTED] wrote: Yes, but I was speaking about this line: typedef uint32_t u_int32_t; Right :) Do you have the time to give the inline a try? It would be nice to standardize it in php_config and config.w32.h as it can be used in other

Re: [PHP-CVS] cvs: php-src /ext/standard config.m4 crypt_freesec.c crypt_freesec.h

2008-08-23 Thread Arnaud Le Blanc
Hi, On Saturday 23 August 2008 21:58:53 Pierre Joye wrote: On Sat, Aug 23, 2008 at 9:34 PM, Arnaud Le Blanc [EMAIL PROTECTED] wrote: Yes, but I was speaking about this line: typedef uint32_t u_int32_t; Right :) Do you have the time to give the inline a try? It works. It would be

[PHP-CVS] cvs: php-src /ext/standard config.m4

2007-07-11 Thread Jani Taskinen
janiWed Jul 11 11:55:46 2007 UTC Modified files: /php-src/ext/standard config.m4 Log: - Nuke extra AC_MSG_CHECKING http://cvs.php.net/viewvc.cgi/php-src/ext/standard/config.m4?r1=1.85r2=1.86diff_format=u Index: php-src/ext/standard/config.m4 diff -u

[PHP-CVS] cvs: php-src /ext/standard config.m4 datetime.c

2006-08-24 Thread Antony Dovgal
tony2001Thu Aug 24 11:05:38 2006 UTC Modified files: /php-src/ext/standard config.m4 datetime.c Log: this fixes segfault in strptime() on 64bit Linuxes, caused by the missing declaration unfortunately defining _XOPEN_SOURCE breaks the build (some

Re: [PHP-CVS] cvs: php-src /ext/standard config.m4

2004-11-10 Thread Joe Orton
On Tue, Nov 09, 2004 at 08:39:53PM +0100, Derick Rethans wrote: On Tue, 9 Nov 2004, Joe Orton wrote: jorton Tue Nov 9 10:58:17 2004 EDT Modified files: /php-src/ext/standard config.m4 Log: Make the rounding fuzz check work again with gcc 3.3 and later,

[PHP-CVS] cvs: php-src /ext/standard config.m4

2004-11-09 Thread Joe Orton
jorton Tue Nov 9 10:58:17 2004 EDT Modified files: /php-src/ext/standard config.m4 Log: Make the rounding fuzz check work again with gcc 3.3 and later, fixing the bug24142 test.

Re: [PHP-CVS] cvs: php-src /ext/standard config.m4

2004-11-09 Thread Derick Rethans
On Tue, 9 Nov 2004, Joe Orton wrote: jortonTue Nov 9 10:58:17 2004 EDT Modified files: /php-src/ext/standard config.m4 Log: Make the rounding fuzz check work again with gcc 3.3 and later, fixing the bug24142 test. Doesn't this need to be fixed in PHP_5_0

[PHP-CVS] cvs: php-src /ext/standard config.m4

2004-09-28 Thread Jani Taskinen
sniper Tue Sep 28 16:42:56 2004 EDT Modified files: /php-src/ext/standard config.m4 Log: MFB: - Fixed bug #30205 (Missing unistd.h in crypt() configure test). http://cvs.php.net/diff.php/php-src/ext/standard/config.m4?r1=1.75r2=1.76ty=u Index:

[PHP-CVS] cvs: php-src /ext/standard config.m4

2004-04-04 Thread Marcus Boerger
helly Sun Apr 4 08:31:13 2004 EDT Modified files: /php-src/ext/standard config.m4 Log: Add a comment why it is in http://cvs.php.net/diff.php/php-src/ext/standard/config.m4?r1=1.73r2=1.74ty=u Index: php-src/ext/standard/config.m4 diff -u

[PHP-CVS] cvs: php-src /ext/standard config.m4

2004-04-03 Thread Ard Biesheuvel
abies Sat Apr 3 11:38:11 2004 EDT Modified files: /php-src/ext/standard config.m4 Log: That should do it http://cvs.php.net/diff.php/php-src/ext/standard/config.m4?r1=1.72r2=1.73ty=u Index: php-src/ext/standard/config.m4 diff -u

[PHP-CVS] cvs: php-src /ext/standard config.m4

2003-10-04 Thread Moriyoshi Koizumi
moriyoshi Sat Oct 4 08:23:12 2003 EDT Modified files: /php-src/ext/standard config.m4 Log: Fix autoconf(2.13) build Index: php-src/ext/standard/config.m4 diff -u php-src/ext/standard/config.m4:1.65 php-src/ext/standard/config.m4:1.66 ---

[PHP-CVS] cvs: php-src /ext/standard config.m4 math.c

2003-08-09 Thread Marcus Boerger
helly Fri Aug 8 21:12:41 2003 EDT Modified files: /php-src/ext/standard config.m4 math.c Log: Bugfix #24142, part 2 Index: php-src/ext/standard/config.m4 diff -u php-src/ext/standard/config.m4:1.62 php-src/ext/standard/config.m4:1.63 ---