Subject: | Fails with perls < 5.14 |
The attempt to declare 5.12 as the requirement in Build.PL seems to be doubly wrong. Instead of
use 5.0012;
it would be
use 5.012;
Note the extra zero in 5.0012 which would be the equivalent of 5.1.200.
But 5.12 is not the threshold, as this report shows, it would be 5.14:
http://www.cpantesters.org/cpan/report/102800857
Or maybe this happened just to remind us to simply use $VERSION= syntax in the module itself and thus support older perl versions?