This is what I do to build it:

In apache src dir:

./configure \
    --prefix="/usr/local/apache_2.0.54+mod_perl"  \
    --enable-so \
    --enable-proxy \
    --enable-ssl \
    --enable-proxy-http \
    --with-mpm=prefork \
    --enable-modules=most \
    --enable-mods-shared=max

make install

In mod_perl src dir:

perl Makefile.PL MP_DEBUG=1 MP_USE_DSO=1 
MP_APXS=/usr/local/apache_2.0.54+mod_perl/bin/apxs MP_TRACE=1
make install


It works for me.

Thanks Jie for your info,

Does that also add the httpd.conf entry to load the .so or do you do that manually?

I'll try MP_USE_DSO to make it explicit and perhaps it will add the httpd.conf goods (I found it *was* making the .so just not adding it to httpd.conf)

Thanks again!

Reply via email to