diff options
author | Tels <nospam-abuse@bloodgate.com> | 2007-09-16 13:23:14 +0200 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2007-09-16 10:48:40 +0000 |
commit | 08a3f4a9aebf0e95afafdb0217fa2977410366cf (patch) | |
tree | 40f43e05338fdfd6922d43b799834b166efa2d74 /ext/Math | |
parent | f5afd28d716f3f7def49a49cd690ce11e9685fb0 (diff) | |
download | perl-08a3f4a9aebf0e95afafdb0217fa2977410366cf.tar.gz |
[PATCHES] various small Math::BigInt et. al. fixes
Message-Id: <200709161123.14970@bloodgate.com>
Date: Sun, 16 Sep 2007 11:23:14 +0200
Subject: Re: [PATCHES] various small Math::BigInt et. al. fixes
From: Tels <nospam-abuse@bloodgate.com>
Message-Id: <200709161156.09071@bloodgate.com>
Date: Sun, 16 Sep 2007 11:56:08 +0200
p4raw-id: //depot/perl@31875
Diffstat (limited to 'ext/Math')
-rw-r--r-- | ext/Math/BigInt/FastCalc/FastCalc.pm | 6 | ||||
-rw-r--r-- | ext/Math/BigInt/FastCalc/Makefile.PL | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/ext/Math/BigInt/FastCalc/FastCalc.pm b/ext/Math/BigInt/FastCalc/FastCalc.pm index 38b71fa33d..5fb89dc384 100644 --- a/ext/Math/BigInt/FastCalc/FastCalc.pm +++ b/ext/Math/BigInt/FastCalc/FastCalc.pm @@ -1,6 +1,6 @@ package Math::BigInt::FastCalc; -use 5.006002; +use 5.006; use strict; # use warnings; # dont use warnings for older Perls @@ -11,7 +11,7 @@ use vars qw/@ISA $VERSION $BASE $BASE_LEN/; @ISA = qw(DynaLoader); -$VERSION = '0.15_01'; +$VERSION = '0.16'; bootstrap Math::BigInt::FastCalc $VERSION; @@ -34,7 +34,7 @@ BEGIN pow root sqrt log_int fac nok digit check from_hex from_bin from_oct as_hex as_bin as_oct - zeros length base_len + zeros base_len xor or and alen 1ex /) diff --git a/ext/Math/BigInt/FastCalc/Makefile.PL b/ext/Math/BigInt/FastCalc/Makefile.PL index 6307098bfb..8ab4040c0e 100644 --- a/ext/Math/BigInt/FastCalc/Makefile.PL +++ b/ext/Math/BigInt/FastCalc/Makefile.PL @@ -6,7 +6,7 @@ WriteMakefile( 'NAME' => 'Math::BigInt::FastCalc', 'VERSION_FROM' => 'FastCalc.pm', 'PREREQ_PM' => { - 'Math::BigInt' => 1.86, + 'Math::BigInt' => 1.88, }, INSTALLDIRS => 'perl', PREREQ_FATAL => 1, |