
rolfm at denison
Jan 6, 2009, 11:12 AM
Post #2 of 8
(2028 views)
Permalink
|
|
Re: RE : [8395] - put apreq back to apreq2 (fix it better if necessary)
[In reply to]
|
|
As I noted in an earlier e-mail to this list, I believe apreq uses a different name when built as a static module (and found by the script) than when it is in LoadModule. LoadModule apreq_module lib/httpd/mod_apreq2.so So if the script looks for $apreq2_module, it's not going to find it. **** foreach my $mod (qw(apreq expires perl log_config mime alias apache_ssl ssl)) { # first look in static modules if (exists $AP{static_modules}{"mod_$mod"} || .. if ($AP{dso}) { # try modules specified in LoadModule # (note: removed add_module part) if ($AP{load_modules}{"${mod}_module"} I had suggested using a search for mod_$mod in the Load Module search, but no one responded. I believe that will fix it in this case, but I don't know the impact on other modules. -Matt On Jan 6, 2009, at 1:44 PM, Paul Orrock wrote: > Hi Scott > > Maybe between us we can finally get to the bottom of it. > > On Hardy I have libapache2-mod-apreq2, version 2.08-5 which gives me > > /usr/lib/apache2/modules/mod_apreq2.so > > and > > /etc/apache2/mods-available/apreq.load > > which has > > LoadModule apreq_module /usr/lib/apache2/modules/mod_apreq2.so > > On doing a make in trunk it says > > Your Apache supports loadable modules (DSOs). > Found Apache user: www-data > Found Apache group: www-data > Checking for required Apache modules... > All required modules found. > > with apreq instead of apreq2 in the htprobe_apache2.pl script > > What do you get ? > > regards, > > Paul
|