in reply to Problem with POSIX.pm module using pp

It seems to be a bug in Module::ScanDeps (pp depends on it), as it doesn't recognize the unorthodox use POSIX":sys_wait_h"; (it does recognize use POSIX ":sys_wait_h"; or use POSIX(":sys_wait_h");
scandeps -B program.pl pp -o program.exe program.pl pp -MPOSIX -MModule::Name ... -o program.exe program.pl

Replies are listed 'Best First'.
Re^2: Problem with POSIX.pm module using pp
by athanasia (Pilgrim) on Oct 23, 2008 at 07:48 UTC
    That fixed the issue. Thanks a lot!

    Athanasia

      Please report such issues as bugs when you find them. We do try hard to maintain Module::ScanDeps as a dependency of PAR::Packer and I generally read what happens on Perlmonks, but that's not a given.

      This being said, I'll try to fix the issue in M::SD (so no need to report this time). Eventhough I'm not particularly happy that I have to look at Module::ScanDeps::scan_chunk() again...

      Update: Module::ScanDeps 0.86 will be fixed in this regard. I also found another bug while I was at it!