building php 5.0.1 from source...
for some reason, when I configure like so (note the 'with-apache'):
./configure --prefix=/usr/local/php --with-mysql=/usr/local/mysql --with-apache=/root/apache_1.3.31 --with-libxml-dir=/usr/local/libxml2
I can make, and make install fine. but there is no libphp5.so created for apache to load as module!
so I'm trying this instead...(note the with-apxs)
./configure --prefix=/usr/local/php --with-mysql=/usr/local/mysql --with-apxs=/usr/local/apache/bin/apxs --with-libxml-dir=/usr/local/libxml2/
but when I try to run a make with this, I get...
ext/libxml/libxml.lo: file not recognized: File truncated
collect2: ld returned 1 exit status
make: *** [libphp5.la] Error 1
anyone know what's going on with this? why isn't the with-apache configuration giving me a .so ? why can't the apxs configuration find the libxml like the apxs can?
thanks...