On May 29, 2013, at 2:43 PM, Carlos Juan Diaz via RT <bug-Ham-Resources-HamQTH@rt.cpan.org> wrote:
Show quoted text>
> Hi Tim,
>
> The problem is with the XML-Reader module. You can patch it changing the XML-Reader module with XML :: Reader :: PP, which used the module XML :: Parsepp to parse internally.
> From what I've seen in CPANT about XML::Reader::PP, works well with perl 5.16.0 on MacOS X, so I'd appreciate reportaras if it works in perl 5.12.0.
>
Carlos,
Looks like XML::Parsepp will not install (on Mac):
CPAN.pm: Building K/KE/KEICHNER/XML-Parsepp-0.06.tar.gz
Perl v5.14.0 required--this is only v5.12.4, stopped at Build.PL line 3.
BEGIN failed--compilation aborted at Build.PL line 3.
and
CPAN.pm: Building K/KE/KEICHNER/XML-Reader-PP-0.02.tar.gz
Perl v5.14.0 required--this is only v5.12.4, stopped at Build.PL line 3.
BEGIN failed--compilation aborted at Build.PL line 3.
for XML::Reader::PP.
So no luck on mac and Linux (Unubu 12.04).
However tested in Virt machine on Debian Wheezy and works fine. Wheezy has Perl 5.14.
So getting close.
73,
Tim
Show quoted text> I attach you a file with the changes that you should do to fix it.
> Changes are very simple:
>
> < use XML::Reader;
> ---
>> use XML::Reader::PP;
> 170d169
> <
> 180,181c179
> <
> < my $xml = XML::Reader->new(\$content);
> ---
>> my $xml = XML::Reader::PP->new(\$content);
>
> In the next version of HRH be solved.
>
> Thanks for the report, and for your interest in my module.
>
> 7c7
> < use XML::Reader;
> ---
>> use XML::Reader::PP;
> 170d169
> <
> 180,181c179
> <
> < my $xml = XML::Reader->new(\$content);
> ---
>> my $xml = XML::Reader::PP->new(\$content);
Tim
KY4J