On 8/13/07, Neta Ben-Porat <[EMAIL PROTECTED]> wrote: > When I tried 'pp -B -o Test Test.pl', an executable was created but when > I've tried running it elsewhere I got the message: 'XMLin() requires > either XML::SAX or XML::Parser at script/CorrectDNIXML.pl line 80'
You're obviously use'ing XML::Simple which is tricky, since it uses some (whatever you have installed) SAX parser "under the hood" that is not detectable by pp (or rather Module::ScanDeps) using static analysis. Try using the -x option to pp (will also run your program once), that should detect the SAX parser used. Cheers, Roderich
