H
HarishN
I just installed the XML:
arser and when I tried to run a test I see
this following error.
Parser.pm and Expat.pm versions don't match at
/my/local/harishn/perl-modules/lib/5.6.1/sun4-solaris/XML/Parser.pm
line 16.
I looked at the source code in these 2 modules.
package XML:
arser;
use Carp;
BEGIN {
require XML:
arser::Expat;
$VERSION = '2.34';
die "Parser.pm and Expat.pm versions don't match"
unless $VERSION eq $XML:
arser::Expat::VERSION;
}
package XML:
arser::Expat;
require 5.004;
use strict;
use vars qw($VERSION @ISA %Handler_Setters %Encoding_Table
@Encoding_Path
$have_File_Spec);
use Carp;
require DynaLoader;
@ISA = qw(DynaLoader);
$VERSION = "2.34" ;
I see both versions match but I still get the error. Can you anyone
help in resolving this ?
Thank you very much,
Harish
this following error.
Parser.pm and Expat.pm versions don't match at
/my/local/harishn/perl-modules/lib/5.6.1/sun4-solaris/XML/Parser.pm
line 16.
I looked at the source code in these 2 modules.
package XML:
use Carp;
BEGIN {
require XML:
$VERSION = '2.34';
die "Parser.pm and Expat.pm versions don't match"
unless $VERSION eq $XML:
}
package XML:
require 5.004;
use strict;
use vars qw($VERSION @ISA %Handler_Setters %Encoding_Table
@Encoding_Path
$have_File_Spec);
use Carp;
require DynaLoader;
@ISA = qw(DynaLoader);
$VERSION = "2.34" ;
I see both versions match but I still get the error. Can you anyone
help in resolving this ?
Thank you very much,
Harish