Subject: | XML::Stream and Encode for perl 5.6.1 |
Encode doesn't work with perl 5.6, but if you replace your
use Encode;
statement by
BEGIN {
require Encode;
if($@) {
require Encode::compat;
}
}
then 5.6 folks can install Encode::compat and use XML::Stream as well.
Thanks,
-- Mike