Subject: | Math::BigInt::Calc version specified as a string |
lib/Math/BigInt/FastCalc.pm uses Math::BigInt::Calc like this:
use Math::BigInt::Calc '1.999801';
I think the single quotes around the version is not what you want:
$ perl -e 'use Math::BigInt::Calc q{1.999801}'
$ perl -e 'use Math::BigInt::Calc q{2.999801}'
$ perl -e 'use Math::BigInt::Calc 2.999801'
Math::BigInt::Calc version 2.999801 required--this is only version 1.999715 at -e line 1.
BEGIN failed--compilation aborted at -e line 1.