|
Posted by Sisyphus on October 23, 2006, 9:56 pm
Please log in for more thread options
> I am recieving the error
>
> mod_perl 1.x ( < 1.99) is required at Makefile.PL line 34.
> BEGIN failed--compilation aborted at Makefile.PL line 36.
>
> I've installed mod_perl and it says up to date
>
> I am trying to install using perl -MCPAN -e 'install Apache::Request'
>
> where do i begin to troubleshoot the problem?
>
Looks like that error comes from:
elsif ($mod_perl::VERSION > 1.98) {
die "mod_perl 1.x ( < 1.99) is required";
}
from which I deduce that Apache::Request (or, more exactly, libapreq) won't
work with a version of mod_perl that is more recent than 1.98.
Cheers,
Rob
|