diff options
author | Florian Ragwitz <rafl@debian.org> | 2010-09-13 16:18:50 +0200 |
---|---|---|
committer | Florian Ragwitz <rafl@debian.org> | 2010-09-13 17:27:54 +0200 |
commit | 0d71d61a921fd476f7c99a50c48dc66899157b9f (patch) | |
tree | dd819a65652ec76cdc8e4ae8aef12c01fc1729cf /dist | |
parent | ab3216d918c7330bae0a9f1019f970db2c78f3c9 (diff) | |
download | perl-0d71d61a921fd476f7c99a50c48dc66899157b9f.tar.gz |
Make Math-BigInt require perl 5.6.2
It has been broken on 5.6.1 and earlier for quite some time now, and it isn't
clear why. If anyone wants 5.6.2 support back, patches are welcome.
Diffstat (limited to 'dist')
-rw-r--r-- | dist/Math-BigInt/lib/Math/BigFloat.pm | 2 | ||||
-rw-r--r-- | dist/Math-BigInt/lib/Math/BigInt.pm | 2 | ||||
-rw-r--r-- | dist/Math-BigInt/lib/Math/BigInt/Calc.pm | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/dist/Math-BigInt/lib/Math/BigFloat.pm b/dist/Math-BigInt/lib/Math/BigFloat.pm index c10c44c85e..c303672796 100644 --- a/dist/Math-BigInt/lib/Math/BigFloat.pm +++ b/dist/Math-BigInt/lib/Math/BigFloat.pm @@ -13,7 +13,7 @@ package Math::BigFloat; # _p : precision $VERSION = '1.61'; -require 5.006; +require 5.006002; require Exporter; @ISA = qw/Math::BigInt/; diff --git a/dist/Math-BigInt/lib/Math/BigInt.pm b/dist/Math-BigInt/lib/Math/BigInt.pm index 5db4786839..7e6166eb61 100644 --- a/dist/Math-BigInt/lib/Math/BigInt.pm +++ b/dist/Math-BigInt/lib/Math/BigInt.pm @@ -16,7 +16,7 @@ package Math::BigInt; # underlying lib might change the reference! my $class = "Math::BigInt"; -use 5.006; +use 5.006002; $VERSION = '1.92'; diff --git a/dist/Math-BigInt/lib/Math/BigInt/Calc.pm b/dist/Math-BigInt/lib/Math/BigInt/Calc.pm index 46de3df631..4e54f88b3a 100644 --- a/dist/Math-BigInt/lib/Math/BigInt/Calc.pm +++ b/dist/Math-BigInt/lib/Math/BigInt/Calc.pm @@ -1,6 +1,6 @@ package Math::BigInt::Calc; -use 5.006; +use 5.006002; use strict; # use warnings; # dont use warnings for older Perls |