Subject: | XML::Parser::PerlSAX should not "use UNIVERSAL" |
Using .07 but it looks as though .08 has same problem:
So if you want to reproduce the problem just do:
perl -e 'use XML::Parser::PerlSAX; use Crypt::Random;'
It will produce nasty messages about Crypt::Random not exporting subs.
Notice that the following does the same error:
perl -e 'use UNIVERSAL; use Crypt::Random;'
I'm using 5.6.1 and can not upgrade as of yet, I think that using UNIVERSAL in later version of perl may work but it is still not suggested.
See following about not use'ing UNIVERSAL:
http://groups-beta.google.com/groups?hl=en&q=Crypt%3A%3ARandom+%22not+exported%22&qt_s=Search+Groups
http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/2003-10/msg00163.html
Thanks!