NOTE: use Perl; is on undef hiatus. You can read content, but you can't post it. More info will be forthcoming forthcomingly.
All the Perl that's Practical to Extract and Report
Stories, comments, journals, and other submissions on use Perl; are Copyright 1998-2006, their respective owners.
Buggy testing environments and 5.005 (Score:2)
Re:Buggy testing environments and 5.005 (Score:1)
If your module DOESN'T support 5.005, then you should be reporting that.
Then CPAN Testers won't test the module, and you won't accumulate FAIL reports.
Reply to This
Parent
Re: (Score:2)
Can you tell exactly what line we would need to add in Makefile.PL to achieve this?
Re: (Score:1)
Can you tell exactly what line we would need to add in Makefile.PL to achieve this?
Just include
use 5.006;and the toolchain will understand the distribution is not for pre-5.6 perls. Someone has said that this use was a 5.6 thing, but I've seen it work ok with 5.5. I don't know if even older perls would understand it as well or if they would need a more barroque thing like:Re: (Score:1)
Re: (Score:1)
Re: (Score:1)
Re: (Score:2)
Re: (Score:2)
use VERSION;is indeed quite common in Makefile.PL files on CPAN.I wasn't sure it was the right way to do it.