Fabian Groffen wrote:
On 21-12-2006 11:49:11 +0100, Romulo Goncalves wrote:
Dear developers,
I am compiling M4 with php in windows. I am using the php 5.2.0
The function zend_register_default_exception is defined in :
..\..\..\..\..\..\src\mapi\clients\php\Cimpl\php_monetdb.c
as zend_register_default_exception();
but in zend_exceptions.h is defined as:
zend_register_default_exception(TSRMLS_D);
Can I change it or should it be modified by the responsible of this code ?
I remember Sjoerd adding something like this once before. If it compiles on Windows with this change, you may want to commit it so we/you can try on linux what it does. I done the following change and the compilation start to go on:
zend_exception_get_default(TSRMLS_C) (based in example) instead of zend_exception_get_default() I will check in this change and we can see if it works in Linux also. Regards, Romulo