Error installing Apache::Request

Error installing Apache::Request

am 23.10.2006 22:47:01 von Adam Lawson

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?

thank you

Adam

Re: Error installing Apache::Request

am 24.10.2006 03:56:14 von Sisyphus

"Adam Lawson" wrote in message
news:rT9%g.122042$ED.29857@read2.cgocable.net...
> 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