Subject: | Version handling in Makefile.PL fails with 5.10.0 |
The following snippet (Makefile.PL, line 27)
my $ver = $]*1000; # correct for possibile division problems
my ($major,$minor,$sub) = unpack("AA3xA3","$ver");
fails with 5.10.0, because the multiplication yields 5010, which the
subsequent unpack() cannot handle...
See also http://perlmonks.org/?node_id=760220