in reply to Crypt::Random not working

What you've shown is insufficient for debugging, please provide everything from perl Makefile.PL up until make test, including perl -V. What does perl -Mblib -MCrypt::Random::Provider::devurandom -e 1 report.

update: http://www.xray.mpe.mpg.de/mailing-lists/cpan-testers/2003-05/msg02287.html

The tests are OK when calling with LANG=C. The system default here is
en_US.UTF-8.

Regards,
    Slaven

MJD says "you can't just make shit up and expect the computer to know what you mean, retardo!"
I run a Win32 PPM repository for perl 5.6.x and 5.8.x -- I take requests (README).
** The third rule of perl club is a statement of fact: pod is sexy.

Replies are listed 'Best First'.
Re: Re: Crypt::Random not working
by BMaximus (Chaplain) on Jul 20, 2003 at 01:31 UTC
    I fixed the problem. What was happening was that Math::Pari was using the pari library I (in stupidity) installed and subsequently loaded. It was causing a conflict and Crypt::Random got confused as a result since it didn't know which library to use. I removed the installed pari lib and all went well.

    BMaximus