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

2009-01-07 Thread Pierre-Alain Joye
pajoye Wed Jan 7 13:03:37 2009 UTC Modified files: /php-src/ext/standard dl.c Log: - MFB: declaration and impl match http://cvs.php.net/viewvc.cgi/php-src/ext/standard/dl.c?r1=1.128&r2=1.129&diff_format=u Index: php-src/ext/standard/dl.c diff -u php-src/

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

2008-05-16 Thread Felipe Pena
felipe Fri May 16 12:11:15 2008 UTC Modified files: /php-src/ext/standard dl.c dl.h Log: - Improved fix (used 's' in parameter parsing) http://cvs.php.net/viewvc.cgi/php-src/ext/standard/dl.c?r1=1.126&r2=1.127&diff_format=u Index: php-src/ext/standard/

Re: [PHP-CVS] cvs: php-src /ext/standard dl.c

2008-05-16 Thread Felipe Pena
Em Sex, 2008-05-16 às 11:40 +0400, Antony Dovgal escreveu: > On 16.05.2008 07:11, Felipe Pena wrote: > > - if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "z", &filename) == > > FAILURE) { > > + if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "z/", &filename) > > == FAILURE) { > >

Re: [PHP-CVS] cvs: php-src /ext/standard dl.c

2008-05-16 Thread Antony Dovgal
On 16.05.2008 07:11, Felipe Pena wrote: - if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "z", &filename) == FAILURE) { + if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "z/", &filename) == FAILURE) { return; } + + convert_to_string(fil

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

2008-05-15 Thread Felipe Pena
felipe Fri May 16 03:11:56 2008 UTC Modified files: /php-src/ext/standard dl.c Log: - MFB: Added conversion to string. http://cvs.php.net/viewvc.cgi/php-src/ext/standard/dl.c?r1=1.125&r2=1.126&diff_format=u Index: php-src/ext/standard/dl.c diff -u php-

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

2008-02-28 Thread Dmitry Stogov
dmitry Thu Feb 28 16:59:21 2008 UTC Modified files: /php-src/ext/standard dl.c Log: We don't nave to change request shutdown sequence if dl() was failed http://cvs.php.net/viewvc.cgi/php-src/ext/standard/dl.c?r1=1.124&r2=1.125&diff_format=u Index: php-

[PHP-CVS] cvs: php-src /ext/standard dl.c dl.h /main php_ini.c

2007-11-09 Thread Jani Taskinen
janiFri Nov 9 16:26:55 2007 UTC Modified files: /php-src/ext/standard dl.c dl.h /php-src/main php_ini.c Log: - Allow using full path to load modules using "extension" directive http://cvs.php.net/viewvc.cgi/php-src/ext/standard/dl.c?r1=1.121

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

2007-11-09 Thread Jani Taskinen
janiFri Nov 9 13:49:06 2007 UTC Modified files: /php-src/ext/standard dl.c Log: ws + cs http://cvs.php.net/viewvc.cgi/php-src/ext/standard/dl.c?r1=1.120&r2=1.121&diff_format=u Index: php-src/ext/standard/dl.c diff -u php-src/ext/standard/dl.c:1.120 ph

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

2007-09-18 Thread Johannes Schl�ter
johannesWed Sep 19 01:08:39 2007 UTC Modified files: /php-src/ext/standard dl.c Log: - Fix build (filename is a zval * here, not a zval** like in 5_2) http://cvs.php.net/viewvc.cgi/php-src/ext/standard/dl.c?r1=1.118&r2=1.119&diff_format=u Index: ph

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

2007-09-18 Thread Stanislav Malyshev
stasWed Sep 19 00:06:06 2007 UTC Modified files: /php-src/ext/standard dl.c Log: use right variable name http://cvs.php.net/viewvc.cgi/php-src/ext/standard/dl.c?r1=1.117&r2=1.118&diff_format=u Index: php-src/ext/standard/dl.c diff -u php-src/ext/sta

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

2007-09-18 Thread Stanislav Malyshev
stasTue Sep 18 20:21:04 2007 UTC Modified files: /php-src/ext/standard dl.c Log: limit dl() argument length (patch by Christian Hoffmann) http://cvs.php.net/viewvc.cgi/php-src/ext/standard/dl.c?r1=1.116&r2=1.117&diff_format=u Index: php-src/ext/stan

Re: [PHP-CVS] cvs: php-src /ext/standard dl.c

2007-09-13 Thread Stanislav Malyshev
Wouldn't something with strcspn and a string build form '/' and DEFAULT_SLASH be faster? Not sure. I would rather use strpbrk, though I'm not sure how easy is to actually build that string from macros. But dl() is anyway not the shining star of performance, so saving a dozen of CPU cycles whi

Re: [PHP-CVS] cvs: php-src /ext/standard dl.c

2007-09-13 Thread Marcus Boerger
Hello Stanislav, Thursday, September 13, 2007, 3:16:24 AM, you wrote: > stasThu Sep 13 01:16:24 2007 UTC > Modified files: > /php-src/ext/standard dl.c > Log: > MFB: docs say dl() parameter can be filename only - enforce it > > > http://cvs.php.ne

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

2007-09-13 Thread Jani Taskinen
janiThu Sep 13 07:41:59 2007 UTC Modified files: /php-src/ext/standard dl.c Log: cs/ws fix http://cvs.php.net/viewvc.cgi/php-src/ext/standard/dl.c?r1=1.115&r2=1.116&diff_format=u Index: php-src/ext/standard/dl.c diff -u php-src/ext/standard/dl.c:1.115

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

2007-09-12 Thread Stanislav Malyshev
stasThu Sep 13 01:16:24 2007 UTC Modified files: /php-src/ext/standard dl.c Log: MFB: docs say dl() parameter can be filename only - enforce it http://cvs.php.net/viewvc.cgi/php-src/ext/standard/dl.c?r1=1.114&r2=1.115&diff_format=u Index: php-src/ex

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

2007-05-29 Thread Antony Dovgal
tony2001Tue May 29 21:24:45 2007 UTC Modified files: /php-src/ext/standard dl.c Log: more typofixes http://cvs.php.net/viewvc.cgi/php-src/ext/standard/dl.c?r1=1.113&r2=1.114&diff_format=u Index: php-src/ext/standard/dl.c diff -u php-src/ext/stan

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

2006-12-08 Thread Andrei Zmievski
andrei Fri Dec 8 19:13:51 2006 UTC Modified files: /php-src/ext/standard dl.c Log: Unicode filename support in dl(). http://cvs.php.net/viewvc.cgi/php-src/ext/standard/dl.c?r1=1.110&r2=1.111&diff_format=u Index: php-src/ext/standard/dl.c diff -u php-s

[PHP-CVS] cvs: php-src /ext/standard dl.c dl.h /main php_ini.c /sapi/cli php_cli.c

2005-08-08 Thread Jani Taskinen
sniper Mon Aug 8 12:49:45 2005 EDT Modified files: /php-src/ext/standard dl.c dl.h /php-src/main php_ini.c /php-src/sapi/cli php_cli.c Log: - Fixed problem with -dextension=foobar.so not having it's MINIT run. http://cvs.php.net/diff

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

2005-07-18 Thread Dmitry Stogov
dmitry Mon Jul 18 12:20:08 2005 EDT Modified files: /php-src/main main.c /php-src/ext/standard dl.c Log: Fixed bug in new module statrup mechanism http://cvs.php.net/diff.php/php-src/main/main.c?r1=1.637&r2=1.638&ty=u Index: php-src/main/mai

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

2005-06-30 Thread Dmitry Stogov
dmitry Thu Jun 30 09:43:00 2005 EDT Modified files: /php-src/ext/standard dl.c Log: Restored old behavior of zend_statup_module() http://cvs.php.net/diff.php/php-src/ext/standard/dl.c?r1=1.101&r2=1.102&ty=u Index: php-src/ext/standard/dl.c diff -u php-

Re: [PHP-CVS] cvs: php-src /ext/standard dl.c

2005-06-16 Thread Dan Scott
On 6/16/05, Wez Furlong <[EMAIL PROTECTED]> wrote: > The PDO tests; Cc'd to the PDO test gurus. > > --Wez. > > Derick Rethans wrote: > > On Thu, 16 Jun 2005, Wez Furlong wrote: > > > > > >>wez Thu Jun 16 11:36:40 2005 EDT > >> > >> Modified files: > >>/php-src/ext/standard dl.c

Re: [PHP-CVS] cvs: php-src /ext/standard dl.c

2005-06-16 Thread Wez Furlong
The PDO tests; Cc'd to the PDO test gurus. --Wez. Derick Rethans wrote: On Thu, 16 Jun 2005, Wez Furlong wrote: wez Thu Jun 16 11:36:40 2005 EDT Modified files: /php-src/ext/standard dl.c Log: Don't emit the E_STRICT dl-is-deprecated notice on SAPI's where

Re: [PHP-CVS] cvs: php-src /ext/standard dl.c

2005-06-16 Thread Derick Rethans
On Thu, 16 Jun 2005, Wez Furlong wrote: > wez Thu Jun 16 11:36:40 2005 EDT > > Modified files: > /php-src/ext/standard dl.c > Log: > Don't emit the E_STRICT dl-is-deprecated notice on SAPI's where dl() is > widely (and safely) used. > This allows our test

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

2005-06-16 Thread Wez Furlong
wez Thu Jun 16 11:36:40 2005 EDT Modified files: /php-src/ext/standard dl.c Log: Don't emit the E_STRICT dl-is-deprecated notice on SAPI's where dl() is widely (and safely) used. This allows our test-suite to run in E_STRICT mode. http://cvs.php.

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

2005-05-04 Thread Anantha Kesari H Y
hyanantha Wed May 4 09:26:28 2005 EDT Modified files: /php-src/ext/standard dl.c Log: NetWare LibC dlsym works perfectly only thing that each of the extension need to export a symbol with FULL capital prefix. http://cvs.php.net/diff.php/php-src/

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

2004-07-20 Thread Marcus Boerger
helly Tue Jul 20 15:23:55 2004 EDT Modified files: /php-src/ext/standard dl.c Log: - Need to set handle prior to calling zend_register_module_ex() (Marcus, Kamesh Jayachandran ) http://cvs.php.net/diff.php/php-src/ext/standard/dl.c?r1=1.96&r2=1.9

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

2004-07-06 Thread Marcus Boerger
helly Tue Jul 6 14:48:39 2004 EDT Modified files: /php-src/ext/standard dl.c Log: - Revert storing handle, got lost in 1.92, noticed by Kamesh Jayachandran http://cvs.php.net/diff.php/php-src/ext/standard/dl.c?r1=1.95&r2=1.96&ty=u Index: php-sr

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

2004-05-25 Thread Ilia Alshanetsky
iliaa Tue May 25 09:51:01 2004 EDT Modified files: /php-src/ext/standard dl.c Log: Kill unused var. http://cvs.php.net/diff.php/php-src/ext/standard/dl.c?r1=1.94&r2=1.95&ty=u Index: php-src/ext/standard/dl.c diff -u php-src/ext/standard/dl.c:1.94 php-

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

2004-05-25 Thread Wez Furlong
wez Tue May 25 09:25:22 2004 EDT Modified files: /php-src/ext/standard dl.c Log: Merge that nicer error message here too http://cvs.php.net/diff.php/php-src/ext/standard/dl.c?r1=1.93&r2=1.94&ty=u Index: php-src/ext/standard/dl.c diff -u php-src/ext/

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

2004-05-21 Thread Wez Furlong
wez Fri May 21 13:17:55 2004 EDT Modified files: /php-src/ext/standard dl.c Log: Ok, so we do need to rinit here after all. http://cvs.php.net/diff.php/php-src/ext/standard/dl.c?r1=1.92&r2=1.93&ty=u Index: php-src/ext/standard/dl.c diff -u php-src/e

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

2004-05-21 Thread Wez Furlong
wez Fri May 21 13:08:36 2004 EDT Modified files: /php-src/ext/standard dl.c Log: Update to reflect recent changes in dl() http://cvs.php.net/diff.php/php-src/ext/standard/dl.c?r1=1.91&r2=1.92&ty=u Index: php-src/ext/standard/dl.c diff -u php-src/ext

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

2004-05-18 Thread Stanislav Malyshev
stasTue May 18 12:13:58 2004 EDT Modified files: /php-src/ext/standard dl.c Log: Z_TYPE_P is for zvals http://cvs.php.net/diff.php/php-src/ext/standard/dl.c?r1=1.90&r2=1.91&ty=u Index: php-src/ext/standard/dl.c diff -u php-src/ext/standard/dl.c:1.90

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

2004-05-18 Thread Wez Furlong
wez Tue May 18 11:26:32 2004 EDT Modified files: /php-src/ext/standard dl.c Log: Fix dl() and extension= http://cvs.php.net/diff.php/php-src/ext/standard/dl.c?r1=1.89&r2=1.90&ty=u Index: php-src/ext/standard/dl.c diff -u php-src/ext/standard/dl.c:1.

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

2004-05-01 Thread Marcus Boerger
helly Sat May 1 16:34:15 2004 EDT Modified files: /php-src/ext/standard dl.c Log: Don't load modules twice http://cvs.php.net/diff.php/php-src/ext/standard/dl.c?r1=1.88&r2=1.89&ty=u Index: php-src/ext/standard/dl.c diff -u php-src/ext/standard/dl.c:1.88

Re: [PHP-CVS] cvs: php-src /ext/standard dl.c

2004-02-14 Thread Pierre-Alain Joye
On Sat, 14 Feb 2004 20:17:22 +0100 Jan Lehnardt <[EMAIL PROTECTED]> wrote: > Hi Pierre > On 14 Feb 2004, at 20:03, Pierre-Alain Joye wrote: > > The best way to improve it is to remove it ;) > > ranting helps. Please see internals, this is unrelated to > the discussion. I cannot resist :) -- PH

Re: [PHP-CVS] cvs: php-src /ext/standard dl.c

2004-02-14 Thread Jan Lehnardt
Hi Pierre On 14 Feb 2004, at 20:03, Pierre-Alain Joye wrote: The best way to improve it is to remove it ;) ranting helps. Please see internals, this is unrelated to the discussion. Jan -- -- 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 dl.c

2004-02-14 Thread Pierre-Alain Joye
On Sat, 14 Feb 2004 19:02:23 - "Jan Lehnardt" <[EMAIL PROTECTED]> wrote: > Modified files: > /php-src/ext/standard dl.c > Log: >- improve error message The best way to improve it is to remove it ;) pierre -- PHP CVS Mailing List (http://www.php.net/) To unsub

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

2004-02-14 Thread Jan Lehnardt
jan Sat Feb 14 14:02:23 2004 EDT Modified files: /php-src/ext/standard dl.c Log: - improve error message http://cvs.php.net/diff.php/php-src/ext/standard/dl.c?r1=1.87&r2=1.88&ty=u Index: php-src/ext/standard/dl.c diff -u php-src/ext/standard/dl.c:1

Re: [PHP-CVS] cvs: php-src /ext/standard dl.c

2004-02-14 Thread Andi Gutmans
At 06:54 PM 2/14/2004 +0100, Jan Lehnardt wrote: Hi, On 11 Feb 2004, at 12:46, Zeev Suraski wrote: + zend_error(E_STRICT, "dl() is deprecated - use extension= in your php.ini"); unrelated to the ongoing discussion, wouldn't it make sense to show the module's name in the error message

Re: [PHP-CVS] cvs: php-src /ext/standard dl.c

2004-02-14 Thread Jan Lehnardt
Hi, On 11 Feb 2004, at 12:46, Zeev Suraski wrote: + zend_error(E_STRICT, "dl() is deprecated - use extension= in your php.ini"); unrelated to the ongoing discussion, wouldn't it make sense to show the module's name in the error message? Something like: zend_error(E_STRICT, "dl() is deprecate

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

2004-02-11 Thread Zeev Suraski
zeevWed Feb 11 06:46:21 2004 EDT Modified files: /php-src/ext/standard dl.c Log: Finally add a notice to hint people that using dl() is a bad idea... http://cvs.php.net/diff.php/php-src/ext/standard/dl.c?r1=1.86&r2=1.87&ty=u Index: php-src/ext/stand

[PHP-CVS] cvs: php-src /ext/standard dl.c /win32 winutil.c

2003-12-17 Thread Marcus Boerger
helly Wed Dec 17 06:20:36 2003 EDT Modified files: /php-src/ext/standard dl.c /php-src/win32 winutil.c Log: Fix a memleak: A second call to *nix version of dlerror() frees the error string. This behavior is also adapted to the win build so that

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

2003-08-17 Thread David Croft
david Sun Aug 17 05:57:21 2003 EDT Modified files: /php-src/ext/standard dl.c Log: #typo Index: php-src/ext/standard/dl.c diff -u php-src/ext/standard/dl.c:1.83 php-src/ext/standard/dl.c:1.84 --- php-src/ext/standard/dl.c:1.83 Tue Jun 10 16:03:37