diff options
Diffstat (limited to 'dist')
-rw-r--r-- | dist/Math-BigInt-FastCalc/FastCalc.pm | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/dist/Math-BigInt-FastCalc/FastCalc.pm b/dist/Math-BigInt-FastCalc/FastCalc.pm index 03af519e08..24ab90b67f 100644 --- a/dist/Math-BigInt-FastCalc/FastCalc.pm +++ b/dist/Math-BigInt-FastCalc/FastCalc.pm @@ -2,18 +2,16 @@ package Math::BigInt::FastCalc; use 5.006; use strict; -# use warnings; # dont use warnings for older Perls +use warnings; -use DynaLoader; use Math::BigInt::Calc; -use vars qw/@ISA $VERSION $BASE $BASE_LEN/; - -@ISA = qw(DynaLoader); +use vars qw/$VERSION $BASE $BASE_LEN/; $VERSION = '0.23'; -bootstrap Math::BigInt::FastCalc $VERSION; +require XSLoader; +XSLoader::load(__PACKAGE__); ############################################################################## # global constants, flags and accessory |