perl - Using XML::Twig failure due to Expat module -
i using perl source compile , use dll of in tool. in trying embed xml::twig module in perl statically.
xml::twig dependent on xml::parse need xml::parse::expat. using twig module function in scripts below:
$filename = "c:\\log.xml"; $twig= new xml::twig; $twig->parsefile( $filename); # build twig $root= $twig->root; # root of twig (stats) @players= $root->children; # player list
this usage internally calls parser module call expat throws error undefined subroutine &xml::parser::expat::parsercreate called @ expat.pm line 77.
i have dynamically linked perl dll tool , linked expat.lib can please tell if problem getting because of way export parsercreate function resides in expat.lib ?
Comments
Post a Comment