Page 1 of 1

PHPize

Posted: Thu Oct 20, 2005 12:03 pm
by TeckniX
I'm pretty new to PHP extensions, and I dove in it through the Zend tutoril on the Zend technologies page - I've done quite a bit of PHP, and figured that the next logical step was the extensions
http://www.zend.com/php/internals/exten ... iting1.php

I've copied their first hello world files and ran
phpize
./configure --enable-hello
make

It doesn't seem that i get any error except for
<----- snip---->
appending configuration tag "F77" to libtool
mkdir: too few arguments
Try `mkdir --help' for more information.
configure: creating ./config.status
config.status: creating config.h
<-------end snip --->
But it didn't seem too crap out of it - I was thinking about going through the configure script, to check for the arguments passed to mkdir, but since the script didn't excatly exit with an error code, I figured I was ok.

Make, didn't report any build errors, but for some reason, the hello.so file module isn't being created.
The folder is there and was created through phpize, but the file is simply not there - What am I missing? what logs can I look at that would tell me where something have gone wrong? What should i be on the lookout for ?

Thanks.