[PHP-CVS] cvs: php-src /ext/pdo php_pdo_driver.h

2009-05-19 Thread Kalle Sommer Nielsen
kalle Tue May 19 10:11:46 2009 UTC Modified files: /php-src/ext/pdophp_pdo_driver.h Log: Fixed compiler warning (HEAD only) http://cvs.php.net/viewvc.cgi/php-src/ext/pdo/php_pdo_driver.h?r1=1.93&r2=1.94&diff_format=u Index: php-src/ext/pdo/php_pdo_driver.h

[PHP-CVS] cvs: php-src /ext/pdo php_pdo_driver.h

2007-01-03 Thread Nuno Lopes
nlopess Wed Jan 3 20:33:10 2007 UTC Modified files: /php-src/ext/pdophp_pdo_driver.h Log: fix PDO_DRIVER_API http://cvs.php.net/viewvc.cgi/php-src/ext/pdo/php_pdo_driver.h?r1=1.85&r2=1.86&diff_format=u Index: php-src/ext/pdo/php_pdo_driver.h diff -u php-src

[PHP-CVS] cvs: php-src /ext/pdo php_pdo_driver.h

2006-09-28 Thread Antony Dovgal
tony2001Thu Sep 28 23:27:49 2006 UTC Modified files: /php-src/ext/pdophp_pdo_driver.h Log: more 64bit fixes http://cvs.php.net/viewvc.cgi/php-src/ext/pdo/php_pdo_driver.h?r1=1.82&r2=1.83&diff_format=u Index: php-src/ext/pdo/php_pdo_driver.h diff -

[PHP-CVS] cvs: php-src /ext/pdo php_pdo_driver.h

2006-09-28 Thread Antony Dovgal
tony2001Thu Sep 28 23:03:45 2006 UTC Modified files: /php-src/ext/pdophp_pdo_driver.h Log: more 64bit fixes http://cvs.php.net/viewvc.cgi/php-src/ext/pdo/php_pdo_driver.h?r1=1.81&r2=1.82&diff_format=u Index: php-src/ext/pdo/php_pdo_driver.h diff -

[PHP-CVS] cvs: php-src /ext/pdo php_pdo_driver.h

2005-10-27 Thread Antony Dovgal
tony2001Thu Oct 27 15:38:41 2005 EDT Modified files: /php-src/ext/pdophp_pdo_driver.h Log: forgot to commit new pdo_attr_ function http://cvs.php.net/diff.php/php-src/ext/pdo/php_pdo_driver.h?r1=1.70&r2=1.71&ty=u Index: php-src/ext/pdo/php_pdo_dri

[PHP-CVS] cvs: php-src /ext/pdo php_pdo_driver.h

2005-10-25 Thread Antony Dovgal
tony2001Tue Oct 25 12:03:11 2005 EDT Modified files: /php-src/ext/pdophp_pdo_driver.h Log: use correct enum type for the arg http://cvs.php.net/diff.php/php-src/ext/pdo/php_pdo_driver.h?r1=1.69&r2=1.70&ty=u Index: php-src/ext/pdo/php_pdo_driver.h

[PHP-CVS] cvs: php-src /ext/pdo php_pdo_driver.h php_pdo_int.h

2005-09-24 Thread Edin Kadribasic
edink Sat Sep 24 10:19:24 2005 EDT Modified files: /php-src/ext/pdophp_pdo_driver.h php_pdo_int.h Log: MFB: Declare functions used by driver as PDO_API in php_pdo_driver.h http://cvs.php.net/diff.php/php-src/ext/pdo/php_pdo_driver.h?r1=1.67&r2=1.68&ty=u In

[PHP-CVS] cvs: php-src /ext/pdo php_pdo_driver.h

2005-07-08 Thread Wez Furlong
wez Fri Jul 8 15:28:52 2005 EDT Modified files: /php-src/ext/pdophp_pdo_driver.h Log: Fix Bug #33111 http://cvs.php.net/diff.php/php-src/ext/pdo/php_pdo_driver.h?r1=1.62&r2=1.63&ty=u Index: php-src/ext/pdo/php_pdo_driver.h diff -u php-src/ext/pdo/php

[PHP-CVS] cvs: php-src /ext/pdo php_pdo_driver.h

2005-07-07 Thread Wez Furlong
wez Thu Jul 7 12:24:52 2005 EDT Modified files: /php-src/ext/pdophp_pdo_driver.h Log: add an attribute for returning the driver name http://cvs.php.net/diff.php/php-src/ext/pdo/php_pdo_driver.h?r1=1.59&r2=1.60&ty=u Index: php-src/ext/pdo/php_pdo_driv

Re: [PHP-CVS] cvs: php-src /ext/pdo php_pdo_driver.h /ext/pdo_mysql mysql_driver.c mysql_statement.c /ext/pdo_pgsql pgsql_driver.c pgsql_statement.c

2005-05-20 Thread Jani Taskinen
On Thu, 19 May 2005, Ilia Alshanetsky wrote: Joe Orton wrote: Furthermore, I'm pretty sure GCC only warns about it if you use -pedantic, i.e. when you explicitly ask it to issue warnings about non-standard language construct. I bet that's in your CFLAGS somewhere, Ilia? I just installed fresh GCC

Re: [PHP-CVS] cvs: php-src /ext/pdo php_pdo_driver.h /ext/pdo_mysql mysql_driver.c mysql_statement.c /ext/pdo_pgsql pgsql_driver.c pgsql_statement.c

2005-05-19 Thread Ilia Alshanetsky
Joe Orton wrote: Furthermore, I'm pretty sure GCC only warns about it if you use -pedantic, i.e. when you explicitly ask it to issue warnings about non-standard language construct. I bet that's in your CFLAGS somewhere, Ilia? I just installed fresh GCC 4.0 and my CFLAGS for it were: "-g -O -Wforma

Re: [PHP-CVS] cvs: php-src /ext/pdo php_pdo_driver.h /ext/pdo_mysql mysql_driver.c mysql_statement.c /ext/pdo_pgsql pgsql_driver.c pgsql_statement.c

2005-05-19 Thread Joe Orton
On Thu, May 19, 2005 at 03:17:20PM +0200, Marcus Boerger wrote: > Hello Ilia, > > gcc is becoming worse and worse. They completeley fuck up the c language. > We should disallow gcc 4. Both 3.4 and 4 are doing some things just wrong. M, nice tasty FUD, guys. Trailing comma in enum is a C99 e

Re: [PHP-CVS] cvs: php-src /ext/pdo php_pdo_driver.h /ext/pdo_mysql mysql_driver.c mysql_statement.c /ext/pdo_pgsql pgsql_driver.c pgsql_statement.c

2005-05-19 Thread Marcus Boerger
Hello Derick, Thursday, May 19, 2005, 4:30:16 PM, you wrote: > On Thu, 19 May 2005, Wez Furlong wrote: >> Can we ignore that particular warning in future? >> >> Trailing commas are good to keep around for copy-and-paste purposes, >> and can also help to reduce the number of lines you see in a d

Re: [PHP-CVS] cvs: php-src /ext/pdo php_pdo_driver.h /ext/pdo_mysql mysql_driver.c mysql_statement.c /ext/pdo_pgsql pgsql_driver.c pgsql_statement.c

2005-05-19 Thread Marcus Boerger
Hello Ilia, Thursday, May 19, 2005, 3:13:28 PM, you wrote: > Welcome to the GCC 4.0 world, in GCC 3.4 those only appear if you > enabled pedantic flag, but in GCC 4.0 they appear as regular warning > messages. after searching a bit more the reson is that gcc 4.0 currently uses c89 as standard

Re: [PHP-CVS] cvs: php-src /ext/pdo php_pdo_driver.h /ext/pdo_mysql mysql_driver.c mysql_statement.c /ext/pdo_pgsql pgsql_driver.c pgsql_statement.c

2005-05-19 Thread Derick Rethans
On Thu, 19 May 2005, Wez Furlong wrote: > Can we ignore that particular warning in future? > > Trailing commas are good to keep around for copy-and-paste purposes, > and can also help to reduce the number of lines you see in a diff when > elements are added to enums, arrays and structs, if you're

Re: [PHP-CVS] cvs: php-src /ext/pdo php_pdo_driver.h /ext/pdo_mysql mysql_driver.c mysql_statement.c /ext/pdo_pgsql pgsql_driver.c pgsql_statement.c

2005-05-19 Thread Steph
sday, May 19, 2005 2:18 PM Subject: Re: [PHP-CVS] cvs: php-src /ext/pdo php_pdo_driver.h /ext/pdo_mysql mysql_driver.c mysql_statement.c /ext/pdo_pgsql pgsql_driver.c pgsql_statement.c Can we ignore that particular warning in future? Trailing commas are good to keep around for copy-and-paste purp

Re: [PHP-CVS] cvs: php-src /ext/pdo php_pdo_driver.h /ext/pdo_mysql mysql_driver.c mysql_statement.c /ext/pdo_pgsql pgsql_driver.c pgsql_statement.c

2005-05-19 Thread Marcus Boerger
Hello Ilia, Thursday, May 19, 2005, 3:21:16 PM, you wrote: > Marcus Boerger wrote: >> Hello Ilia, >> >> gcc is becoming worse and worse. They completeley fuck up the c language. >> We should disallow gcc 4. Both 3.4 and 4 are doing some things just wrong. > I agree to some extent, but as much

Re: [PHP-CVS] cvs: php-src /ext/pdo php_pdo_driver.h /ext/pdo_mysql mysql_driver.c mysql_statement.c /ext/pdo_pgsql pgsql_driver.c pgsql_statement.c

2005-05-19 Thread Ilia Alshanetsky
Wez Furlong wrote: Can we ignore that particular warning in future? Sure, I'll review the GCC docs to try to determine what flags we need to specify to the compiler to make it less anal about the syntax. Ilia -- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/

Re: [PHP-CVS] cvs: php-src /ext/pdo php_pdo_driver.h /ext/pdo_mysql mysql_driver.c mysql_statement.c /ext/pdo_pgsql pgsql_driver.c pgsql_statement.c

2005-05-19 Thread Wez Furlong
Can we ignore that particular warning in future? Trailing commas are good to keep around for copy-and-paste purposes, and can also help to reduce the number of lines you see in a diff when elements are added to enums, arrays and structs, if you're into that kind of thing. There should be a flag t

Re: [PHP-CVS] cvs: php-src /ext/pdo php_pdo_driver.h /ext/pdo_mysql mysql_driver.c mysql_statement.c /ext/pdo_pgsql pgsql_driver.c pgsql_statement.c

2005-05-19 Thread Ilia Alshanetsky
Marcus Boerger wrote: Hello Ilia, gcc is becoming worse and worse. They completeley fuck up the c language. We should disallow gcc 4. Both 3.4 and 4 are doing some things just wrong. I agree to some extent, but as much as may want GCC 4.0 will become the standard compiler soon. OSX Tiger already

Re: [PHP-CVS] cvs: php-src /ext/pdo php_pdo_driver.h /ext/pdo_mysql mysql_driver.c mysql_statement.c /ext/pdo_pgsql pgsql_driver.c pgsql_statement.c

2005-05-19 Thread Marcus Boerger
Hello Ilia, gcc is becoming worse and worse. They completeley fuck up the c language. We should disallow gcc 4. Both 3.4 and 4 are doing some things just wrong. marcus Thursday, May 19, 2005, 3:13:28 PM, you wrote: > Welcome to the GCC 4.0 world, in GCC 3.4 those only appear if you > enabled

Re: [PHP-CVS] cvs: php-src /ext/pdo php_pdo_driver.h /ext/pdo_mysql mysql_driver.c mysql_statement.c /ext/pdo_pgsql pgsql_driver.c pgsql_statement.c

2005-05-19 Thread Ilia Alshanetsky
Welcome to the GCC 4.0 world, in GCC 3.4 those only appear if you enabled pedantic flag, but in GCC 4.0 they appear as regular warning messages. Ilia -- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-CVS] cvs: php-src /ext/pdo php_pdo_driver.h /ext/pdo_mysql mysql_driver.c mysql_statement.c /ext/pdo_pgsql pgsql_driver.c pgsql_statement.c

2005-05-19 Thread Wez Furlong
Which compiler does this!? Trailing commas are good :) --Wez. On 5/19/05, Marcus Boerger <[EMAIL PROTECTED]> wrote: > Hello Ilia, > > how can a comma at the end of an enum list fix anything? Allowing the > additional comma in array initializer lists and enums was in c language > from the first

Re: [PHP-CVS] cvs: php-src /ext/pdo php_pdo_driver.h /ext/pdo_mysql mysql_driver.c mysql_statement.c /ext/pdo_pgsql pgsql_driver.c pgsql_statement.c

2005-05-19 Thread Marcus Boerger
Hello Ilia, how can a comma at the end of an enum list fix anything? Allowing the additional comma in array initializer lists and enums was in c language from the first day? marcus Thursday, May 19, 2005, 12:40:56 AM, you wrote: > iliaa Wed May 18 18:40:56 2005 EDT > Modified fil

[PHP-CVS] cvs: php-src /ext/pdo php_pdo_driver.h /ext/pdo_mysql mysql_driver.c mysql_statement.c /ext/pdo_pgsql pgsql_driver.c pgsql_statement.c

2005-05-18 Thread Ilia Alshanetsky
iliaa Wed May 18 18:40:56 2005 EDT Modified files: /php-src/ext/pdophp_pdo_driver.h /php-src/ext/pdo_pgsql pgsql_driver.c pgsql_statement.c /php-src/ext/pdo_mysql mysql_driver.c mysql_statement.c Log: Various compiler warning fixes.