On Oct 23, 1:15 am, [EMAIL PROTECTED] (Kilaru Rajeev) wrote:
> Hi All,
>
> I am getting the following error in the *make test* part while istalling the
> *Crypt::DSA* module. Please give me an advice how to procede.
>
> t/03-keygen.....*Math::BigInt: couldn't load specified math lib(s), fallback
> to Math::BigInt::Calc* at /tmp/Crypt-DSA-0.14/blib/lib/Crypt/DSA/KeyChain.pm
> line 6
> *Math::BigInt: couldn't load specified math lib(s), fallback to
> Math::BigInt::Calc* at /tmp/Crypt-DSA-0.14/blib/lib/Crypt/DSA/Key.pm line 6
> *Math::BigInt: couldn't load specified math lib(s), fallback to
> Math::BigInt::Calc* at /tmp/Crypt-DSA-0.14/blib/lib/Crypt/DSA/Util.pm line 6
>

I don't believe it's an error - it's merely telling you that you don't
have Math::BigInt::GMP installed, so (the slower, pure perl)
Math::BigInt::Calc is being used instead.

The line of code that's producing the warning in all 3 instances is:

use Math::BigInt lib => 'GMP';

If you had Math::BigInt::GMP installed you would find that the tests
run more quickly. (To install Math::BigInt::GMP, you'll first need to
install the GMP library. See http://gmplib.org/ )

Cheers,
Rob


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
http://learn.perl.org/


Reply via email to