Tim Smith wrote:
        Something I did find in httpd.conf was this, is this a problem?
        <IfModule !mod_perl.c>
        #unable to locate mod_perl.so (could be a static build)
        </IfModule>

Yup, you have pinpointed the problem. I have never seen this problem with mod_perl itself. There are quite a few scenarios where it can happen with third party modules using Apache::Test.

So let's figure out why it couldn't find mod_perl.so. Do you have
src/modules/perl/mod_perl.so? If so do file perms look alright?


I don't have that shared library. Could this be because I built it like this
(with MP_USE_STATIC) -
perl Makefile.PL MP_INST_APACHE2=1 MP_AP_PREFIX=/usr/local/apache2
MP_USE_STATIC=1

The results of t/TEST -trace=debug -config
==> unable to locate mod_perl.so (could be a static build)

So it would appear that I want to build mod_perl without the
MP_USE_STATIC=1, is that correct?

That's right. I should have noticed that in your bug report. The static build is not completed yet. I guess we should do more checking. Meanwhile just remove that MP_USE_STATIC=1, it'll use MP_USE_DSO=1 by default.


__________________________________________________________________
Stas Bekman            JAm_pH ------> Just Another mod_perl Hacker
http://stason.org/     mod_perl Guide ---> http://perl.apache.org
mailto:[EMAIL PROTECTED] http://use.perl.org http://apacheweek.com
http://modperlbook.org http://apache.org   http://ticketmaster.com



Reply via email to