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

2008-02-04 Thread Jani Taskinen
This function was actually just for debugging. I didn't include it in by default since I don't think it has much value to the end users..:) Did you find some real usage for it? --Jani On Sun, 2008-02-03 at 14:35 +, Marcus Boerger wrote: helly Sun Feb 3 14:35:29 2008 UTC

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

2008-02-04 Thread Jani Taskinen
Like what stuff? :) --Jani On Mon, 2008-02-04 at 11:40 +0100, Marcus Boerger wrote: Hello Jani, for the moment probably only ofr me. But I am working on more stuff. marcus Monday, February 4, 2008, 10:28:09 AM, you wrote: This function was actually just for debugging. I didn't

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

2008-02-04 Thread Marcus Boerger
Hello Jani, for the moment probably only ofr me. But I am working on more stuff. marcus Monday, February 4, 2008, 10:28:09 AM, you wrote: This function was actually just for debugging. I didn't include it in by default since I don't think it has much value to the end users..:) Did you

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

2008-02-04 Thread Marcus Boerger
Hello Jani, I am trying to add stuff to configuration hash prior to calling the ini parser and then somehow allowing the parser for instance to act on the version of php, whether it is a debug build, and whether it is a zts build. That way I could have one config that loads the correct xdebug

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

2008-02-04 Thread Marcus Boerger
Hello Jani, I did some experiments with b) and I would indeed ignore everything that is configured out. I'll send you a patch as soon as I have somethign that works. For getting the variables into the configuratrion hash prior to parsing the INI I can send you the patch tonight if you care how

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

2008-02-04 Thread Jani Taskinen
a) requires that certain constants are defined prior to parse happens (I have patch for that waiting for commit already) b) Also requires the patch for constants but also a lot more modifications to the parser. I've been working on adding the if..else stuff but haven't had much time lately. It

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

2008-02-04 Thread Jani Taskinen
Please send patches, I'm very interested. :) Perhaps we can combine the work I already did in this.. --Jani On Mon, 2008-02-04 at 13:17 +0100, Marcus Boerger wrote: Hello Jani, I did some experiments with b) and I would indeed ignore everything that is configured out. I'll send you a

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

2008-02-03 Thread Marcus Boerger
helly Sun Feb 3 14:35:29 2008 UTC Modified files: /php-src/ext/standard basic_functions.c basic_functions.h /php-src/main php_ini.c php_ini.h Log: - Rename dump_config_hash() to get_config_hash() as it doesn't dump