Re: [PHP-DEV] Small PHPAPI addition

2011-06-25 Thread Pierre Joye
2011/6/24 Derick Rethans : > On Fri, 24 Jun 2011, Johannes Schlüter wrote: > >> On Thu, 2011-06-23 at 21:47 +0100, Derick Rethans wrote: >> > >> > In order to fix Xdebug bug #587 >> > (http://bugs.xdebug.org/view.php?id=587) I need to have access to >> > module_initialized which is currently a stat

Re: [PHP-DEV] Small PHPAPI addition

2011-06-24 Thread Derick Rethans
On Fri, 24 Jun 2011, Johannes Schlüter wrote: > On Thu, 2011-06-23 at 21:47 +0100, Derick Rethans wrote: > > > > In order to fix Xdebug bug #587 > > (http://bugs.xdebug.org/view.php?id=587) I need to have access to > > module_initialized which is currently a static in main/main.c. I've > > add

Re: [PHP-DEV] Small PHPAPI addition

2011-06-24 Thread Johannes Schlüter
On Thu, 2011-06-23 at 21:47 +0100, Derick Rethans wrote: > Hi! > > In order to fix Xdebug bug #587 (http://bugs.xdebug.org/view.php?id=587) > I need to have access to module_initialized which is currently a static > in main/main.c. I've added a simple function to retrieve that and would > like

Re: [PHP-DEV] Small PHPAPI addition

2011-06-24 Thread Derick Rethans
On Thu, 23 Jun 2011, Stas Malyshev wrote: > On 6/23/11 1:47 PM, Derick Rethans wrote: > > > > In order to fix Xdebug bug #587 > > (http://bugs.xdebug.org/view.php?id=587) I need to have access to > > module_initialized which is currently a static in main/main.c. I've > > added a simple functio

Re: [PHP-DEV] Small PHPAPI addition

2011-06-23 Thread Stas Malyshev
Hi! On 6/23/11 1:47 PM, Derick Rethans wrote: Hi! In order to fix Xdebug bug #587 (http://bugs.xdebug.org/view.php?id=587) I need to have access to module_initialized which is currently a static in main/main.c. I've added a simple function to retrieve that and would like to commit that to 5.3/5

[PHP-DEV] Small PHPAPI addition

2011-06-23 Thread Derick Rethans
Hi! In order to fix Xdebug bug #587 (http://bugs.xdebug.org/view.php?id=587) I need to have access to module_initialized which is currently a static in main/main.c. I've added a simple function to retrieve that and would like to commit that to 5.3/5.4 and trunk. Comments? The patch is attached.