Any tips, pointers, RTFMs appreciated
Got a DNR
Trying to run this script:
#!/usr/bin/perl
use lib "/usr/OpenDeploy/OpenDeployNG/solutions/perl";
use IWXML;
my
@list = ();
my($xml) = IWXML::GetLogDataFromSTDIN();
my(
@list) = $xml->GetSucceededFiles();
...
/usr/bin/perl check.pl
Can't load '/usr/opt/perl5/lib/site_perl/5.8.2/aix-thread-multi/auto/XML/Parser/Expat/Expat.so' for module XML:

arser::Expat: 0509-022 Cannot load module /usr/opt/perl5/lib/site_perl/5.8.2/aix-thread-multi/auto/XML/Parser/Expat/Expat.so.
0509-150 Dependent module libexpat.a(libexpat.so.0) could not be loaded.
0509-022 Cannot load module libexpat.a(libexpat.so.0).
0509-026 System error: A file or directory in the path name does not exist.
0509-022 Cannot load module /usr/opt/perl5/lib/site_perl/5.8.2/aix-thread-multi/auto/XML/Parser/Expat/Expat.so.
0509-150 Dependent module /usr/opt/perl5/lib/site_perl/5.8.2/aix-thread-multi/auto/XML/Parser/Expat/Expat.so could not be loaded. at /usr/opt/perl5/lib/5.8.2/aix-thread-multi/DynaLoader.pm line 229.
at /usr/opt/perl5/lib/site_perl/5.8.2/aix-thread-multi/XML/Parser.pm line 14
Compilation failed in require at /usr/opt/perl5/lib/site_perl/5.8.2/aix-thread-multi/XML/Parser.pm line 14.
BEGIN failed--compilation aborted at /usr/opt/perl5/lib/site_perl/5.8.2/aix-thread-multi/XML/Parser.pm line 18.
Compilation failed in require at /usr/OpenDeploy/OpenDeployNG/solutions/perl/IWXML.pm line 9.
BEGIN failed--compilation aborted at /usr/OpenDeploy/OpenDeployNG/solutions/perl/IWXML.pm line 9.
Compilation failed in require at check.pl line 5.
BEGIN failed--compilation aborted at check.pl line 5.
So I am figuring something is hosed in my env, can anyone point me in the correct direction ?
Trying to read the list of files deployed.
TIA
Andy