On 3/17/07, Bob Hunter <[EMAIL PROTECTED]> wrote:
scandeps.pl -B shows the modules to me too, but the original problem is still pending.
OK, I should have read your original post more thoroughly: I can explain the missing IO::LockedFile::Flock - it isn't reportted by Module::ScanDeps, because it is require'd by IO::Locked File in a way that can't be detected by static analysis. But then adding -M IO::LockedFile::Flock to pp should have pulled it in. At least it does in my minimal test $ pp -o foo.exe -e 'use Log::LogLite; print "OK"' $ ./foo.exe Unable to load IO::LockedFile::Flock: Can't locate IO/LockedFile/Flock.pm in @INC ... $ pp -o foo.exe -M IO::LockedFile::Flock -e 'use Log::LogLite; print "OK"' $ ./foo.exe OK Cheers, Roderich
