[PHP-CVS-DAILY] cvs: php-src / ChangeLog

2008-08-23 Thread changelog
changelog Sun Aug 24 01:32:05 2008 UTC Modified files: /php-srcChangeLog Log: ChangeLog update http://cvs.php.net/viewvc.cgi/php-src/ChangeLog?r1=1.3147r2=1.3148diff_format=u Index: php-src/ChangeLog diff -u php-src/ChangeLog:1.3147

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

2008-08-23 Thread Arnaud Le Blanc
lbarnaudSat Aug 23 13:57:19 2008 UTC Modified files: (Branch: PHP_5_3) /php-src/ext/standard config.m4 crypt_freesec.c crypt_freesec.h Log: MFH: Fix build on solaris

[PHP-CVS] cvs: php-src /ext/pspell pspell.c /ext/pspell/tests 002.phpt

2008-08-23 Thread Felipe Pena
felipe Sat Aug 23 16:20:14 2008 UTC Modified files: /php-src/ext/pspell pspell.c /php-src/ext/pspell/tests 002.phpt Log: - MFB: New parameter parsing API - WS, Cosmetics

[PHP-CVS] cvs: php-src(PHP_5_3) /ext/pspell pspell.c /ext/pspell/tests 003.phpt 005.phpt

2008-08-23 Thread Felipe Pena
felipe Sat Aug 23 16:32:04 2008 UTC Modified files: (Branch: PHP_5_3) /php-src/ext/pspell pspell.c /php-src/ext/pspell/tests 003.phpt 005.phpt Log: MFH: - WS, Cosmetics - Removed unnecessary variables

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

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

2008-08-23 Thread Pierre-Alain Joye
pajoye Sat Aug 23 17:08:31 2008 UTC Modified files: /php-src/ext/standard crypt_freesec.c crypt_freesec.h Log: - fix build http://cvs.php.net/viewvc.cgi/php-src/ext/standard/crypt_freesec.c?r1=1.3r2=1.4diff_format=u Index:

Re: [PHP-CVS] cvs: php-src(PHP_5_2) /ext/standard/tests/file

2008-08-23 Thread Antony Dovgal
Hello Raghubansh. Just curious, did you happen to run these tests on AIX? One of them, specifically this one: ext/standard/tests/file/symlink_link_linkinfo_is_link_basic2.phpt creates an interesting directory ext/standard/tests/file/symlink_link_linkinfo_is_link_basic2 which contains a

[PHP-CVS] cvs: php-src /main main.c

2008-08-23 Thread Pierre-Alain Joye
pajoye Sat Aug 23 17:53:19 2008 UTC Modified files: /php-src/main main.c Log: - exposePHP_MAXPATHLEN http://cvs.php.net/viewvc.cgi/php-src/main/main.c?r1=1.780r2=1.781diff_format=u Index: php-src/main/main.c diff -u php-src/main/main.c:1.780

[PHP-CVS] cvs: php-src(PHP_5_3) / NEWS /main main.c

2008-08-23 Thread Pierre-Alain Joye
pajoye Sat Aug 23 17:55:54 2008 UTC Modified files: (Branch: PHP_5_3) /php-srcNEWS /php-src/main main.c Log: - MFH: expose MAXPATHLEN (PHP_MAXPATHLEN)

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__

[PHP-CVS] cvs: php-src /ext/xmlreader php_xmlreader.c

2008-08-23 Thread Hannes Magnusson
bjori Sat Aug 23 18:06:43 2008 UTC Modified files: /php-src/ext/xmlreader php_xmlreader.c Log: Fix proto http://cvs.php.net/viewvc.cgi/php-src/ext/xmlreader/php_xmlreader.c?r1=1.52r2=1.53diff_format=u Index: php-src/ext/xmlreader/php_xmlreader.c diff

[PHP-CVS] cvs: php-src(PHP_5_3) /ext/xmlreader php_xmlreader.c

2008-08-23 Thread Hannes Magnusson
bjori Sat Aug 23 18:06:59 2008 UTC Modified files: (Branch: PHP_5_3) /php-src/ext/xmlreader php_xmlreader.c Log: fix proto http://cvs.php.net/viewvc.cgi/php-src/ext/xmlreader/php_xmlreader.c?r1=1.13.2.14.2.9.2.5r2=1.13.2.14.2.9.2.6diff_format=u Index:

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,

[PHP-CVS] cvs: php-src(PHP_5_3) /ext/sockets php_sockets_win.c sockets.c /ext/standard basic_functions.c dns.c flock_compat.c flock_compat.h /main network.c php_network.h /win32 glob.h inet.c inet.

2008-08-23 Thread Pierre-Alain Joye
pajoye Sat Aug 23 19:22:11 2008 UTC Added files: (Branch: PHP_5_3) /php-src/win32 inet.c inet.h Modified files: /php-src/ext/socketsphp_sockets_win.c sockets.c /php-src/ext/standard basic_functions.c dns.c flock_compat.c

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

[PHP-CVS] cvs: php-src /win32/build config.w32

2008-08-23 Thread Pierre-Alain Joye
pajoye Sat Aug 23 19:39:07 2008 UTC Modified files: /php-src/win32/buildconfig.w32 Log: - readd the usual suspects to lib/include (was droped with the resolv.h check removal)

[PHP-CVS] cvs: php-src /win32/build config.w32

2008-08-23 Thread Pierre-Alain Joye
pajoye Sat Aug 23 19:50:36 2008 UTC Modified files: /php-src/win32/buildconfig.w32 Log: - we need it for vc 9 (even if php6 will support officially only 9) http://cvs.php.net/viewvc.cgi/php-src/win32/build/config.w32?r1=1.84r2=1.85diff_format=u Index:

[PHP-CVS] cvs: php-src /win32 inet.c inet.h

2008-08-23 Thread Pierre-Alain Joye
pajoye Sat Aug 23 19:55:44 2008 UTC Modified files: /php-src/win32 inet.c inet.h Log: - MFB: fix logic, build correctly when the build targets xp/2k http://cvs.php.net/viewvc.cgi/php-src/win32/inet.c?r1=1.1r2=1.2diff_format=u Index: php-src/win32/inet.c

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

[PHP-CVS] cvs: php-src /win32/build config.w32.h.in

2008-08-23 Thread Pierre-Alain Joye
pajoye Sat Aug 23 20:03:29 2008 UTC Modified files: /php-src/win32/buildconfig.w32.h.in Log: - MFB!!! _WIN32_WINNT and NTDDI_VERSION (bunnie--;) http://cvs.php.net/viewvc.cgi/php-src/win32/build/config.w32.h.in?r1=1.16r2=1.17diff_format=u Index:

[PHP-CVS] cvs: php-src(PHP_5_3) /ext/standard flock_compat.h

2008-08-23 Thread Pierre-Alain Joye
pajoye Sat Aug 23 20:21:08 2008 UTC Modified files: (Branch: PHP_5_3) /php-src/ext/standard flock_compat.h Log: - keep inet_aton declaration on non windows (what inet_aton has to do with flock?)

[PHP-CVS] cvs: php-src /ext/standard flock_compat.c flock_compat.h /win32 inet.h

2008-08-23 Thread Pierre-Alain Joye
pajoye Sat Aug 23 20:31:27 2008 UTC Modified files: /php-src/win32 inet.h /php-src/ext/standard flock_compat.h flock_compat.c Log: - more fixes for inet_* with vc9/xp http://cvs.php.net/viewvc.cgi/php-src/win32/inet.h?r1=1.2r2=1.3diff_format=u

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(PHP_5_3) /ext/standard crypt_freesec.c crypt_freesec.h

2008-08-23 Thread Pierre-Alain Joye
pajoye Sat Aug 23 20:42:18 2008 UTC Modified files: (Branch: PHP_5_3) /php-src/ext/standard crypt_freesec.c crypt_freesec.h Log: - MFB: fix build (common inline definition will be done later)

[PHP-CVS] cvs: php-src(PHP_5_3) /ext/standard crypt_freesec.h

2008-08-23 Thread Pierre-Alain Joye
pajoye Sat Aug 23 21:08:09 2008 UTC Modified files: (Branch: PHP_5_3) /php-src/ext/standard crypt_freesec.h Log: - MFH: fix build http://cvs.php.net/viewvc.cgi/php-src/ext/standard/crypt_freesec.h?r1=1.1.2.5r2=1.1.2.6diff_format=u Index:

[PHP-CVS] cvs: php-internals-win /script conf_tools.bat snapshot.bat snapshot_5_3.bat

2008-08-23 Thread Pierre-Alain Joye
pajoye Sat Aug 23 23:55:40 2008 UTC Modified files: /php-internals-win/script conf_tools.bat snapshot.bat snapshot_5_3.bat Log: - add configure option as configuration - psdk path are now one single variable

[PHP-CVS] cvs: php-src /ext/xmlrpc xmlrpc-epi-php.c

2008-08-23 Thread Felipe Pena
felipe Sun Aug 24 00:45:20 2008 UTC Modified files: /php-src/ext/xmlrpc xmlrpc-epi-php.c Log: - MFB: New parameter parsing API - WS, Cosmetics http://cvs.php.net/viewvc.cgi/php-src/ext/xmlrpc/xmlrpc-epi-php.c?r1=1.60r2=1.61diff_format=u Index:

[PHP-CVS] cvs: php-src(PHP_5_3) /ext/xmlrpc xmlrpc-epi-php.c

2008-08-23 Thread Felipe Pena
felipe Sun Aug 24 00:47:22 2008 UTC Modified files: (Branch: PHP_5_3) /php-src/ext/xmlrpc xmlrpc-epi-php.c Log: - MFH: WS, Comestics - Folding

[PHP-CVS] cvs: php-src /ext/xml xml.c

2008-08-23 Thread Felipe Pena
felipe Sun Aug 24 02:12:51 2008 UTC Modified files: /php-src/ext/xmlxml.c Log: MFB: - New parameter parsing API - Fixed crash in xml_parse_into_struct http://cvs.php.net/viewvc.cgi/php-src/ext/xml/xml.c?r1=1.180r2=1.181diff_format=u Index:

[PHP-CVS] cvs: php-src(PHP_5_3) /ext/xml xml.c

2008-08-23 Thread Felipe Pena
felipe Sun Aug 24 02:13:23 2008 UTC Modified files: (Branch: PHP_5_3) /php-src/ext/xmlxml.c Log: - Removed unnecessary variable http://cvs.php.net/viewvc.cgi/php-src/ext/xml/xml.c?r1=1.157.2.4.2.5.2.10r2=1.157.2.4.2.5.2.11diff_format=u Index:

[PHP-CVS] cvs: php-src /ext/gd gd.c /ext/wddx wddx.c

2008-08-23 Thread Felipe Pena
felipe Sun Aug 24 04:02:20 2008 UTC Modified files: /php-src/ext/gd gd.c /php-src/ext/wddx wddx.c Log: - MFB: New parameter parsing API - CS (wddx) http://cvs.php.net/viewvc.cgi/php-src/ext/gd/gd.c?r1=1.391r2=1.392diff_format=u Index:

[PHP-CVS] cvs: php-src(PHP_5_3) /ext/wddx wddx.c

2008-08-23 Thread Felipe Pena
felipe Sun Aug 24 04:02:49 2008 UTC Modified files: (Branch: PHP_5_3) /php-src/ext/wddx wddx.c Log: - MFH: CS http://cvs.php.net/viewvc.cgi/php-src/ext/wddx/wddx.c?r1=1.119.2.10.2.17.2.9r2=1.119.2.10.2.17.2.10diff_format=u Index: php-src/ext/wddx/wddx.c

[PHP-CVS] cvs: php-src /ext/spl php_spl.c

2008-08-23 Thread Felipe Pena
felipe Sun Aug 24 04:18:23 2008 UTC Modified files: /php-src/ext/splphp_spl.c Log: - Removed unused variable http://cvs.php.net/viewvc.cgi/php-src/ext/spl/php_spl.c?r1=1.140r2=1.141diff_format=u Index: php-src/ext/spl/php_spl.c diff -u