Skip Menu |

This queue is for tickets about the Gantry CPAN distribution.

Report information
The Basics
Id: 33890
Status: resolved
Priority: 0/
Queue: Gantry

People
Owner: Nobody in particular
Requestors: SREZIC [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: 3.51
Fixed in: (no value)



Subject: Wrong specification of minimum perl version
Gantry's Build.PL has the line 'perl' => '5.8', This is wrong, it should be either '5.8.0' or '5.008'. Check it yourself: $ perl -e 'use 5.8;' Perl v5.800.0 required (did you mean v5.008?)--this is only v5.8.8, stopped at -e line 1. Or $ perl5.10.0 -e 'use 5.8;' Perl v5.800.0 required (did you mean v5.8.0?)--this is only v5.10.0, stopped at -e line 1. Note that the "old-fashioned" form 5.008 is preferred, because perls older than 5.006 won't understand the new form and will return funny error messages. Regards, Slaven
Fixed. Thanks!