Re: CPAN tests fail Makefile.PL using Apache::TestMM

2008-07-04 Thread Mark Hedges
Excellent! Thanks everyone for the pointers! --mark--

Re: CPAN tests fail Makefile.PL using Apache::TestMM

2008-07-04 Thread Geoffrey Young
Mark Hedges wrote: On Thu, 3 Jul 2008, Fred Moyer wrote: I've been getting cpan-testers results like this. What should I do? Thanks... --m-- See sub test in: http://search.cpan.org/src/PHRED/Apache-Dispatch-0.10/Makefile.PL Wouldn't that Makefile.PL die if mod_perl is not installed, inst

Re: CPAN tests fail Makefile.PL using Apache::TestMM

2008-07-04 Thread Torsten Foertsch
On Fri 04 Jul 2008, Mark Hedges wrote: > How am I supposed to tell CPAN that the distribution > requires Apache::TestMM when Makefile.PL uses it before > `make` is even executed? You mustn't die that means return an OK result (exit 0). But you mustn't create a Makefile. I do that this way: BEGIN

Re: CPAN tests fail Makefile.PL using Apache::TestMM

2008-07-04 Thread Mark Hedges
On Thu, 3 Jul 2008, Fred Moyer wrote: > > I've been getting cpan-testers results like this. What > > should I do? Thanks... --m-- > > See sub test in: > > http://search.cpan.org/src/PHRED/Apache-Dispatch-0.10/Makefile.PL Wouldn't that Makefile.PL die if mod_perl is not installed, instead of req

Re: CPAN tests fail Makefile.PL using Apache::TestMM

2008-07-03 Thread Fred Moyer
Mark Hedges wrote: How am I supposed to tell CPAN that the distribution requires Apache::TestMM when Makefile.PL uses it before `make` is even executed? So I can't use ExtUtils::MakeMaker's PREREQ_FATAL flag because Makefile.PL does not get that far. http://search.cpan.org/src/MARKLE/Apache2-Co