> first you have to make sure your extension compiles and works
> while it lives in the php4/ext tree,
it's work while i compiled it as static library
> then you can use phpize
i did on to the ext/my_module:
./configure
make
i got:
make[1]: Entering dire
Tsur wrote:
> How can i use phpize for compiling new modules on PHP.
> Or if any one know about any tool to compile and debug modules
> writen with zend macros.
first you have to make sure your extension compiles and works
while it lives in the php4/ext tree, then you can use phpize
on it to cr
On Tue, Oct 30, 2001 at 01:28:01PM -0800, Tsur wrote :
> How can i use phpize for compiling new modules on PHP.
> Or if any one know about any tool to compile and debug modules
> writen with zend macros.
cd your-module-dir
phpize
./configure (optional args you maybe need)
make install
- Markus