On Mon, 2005-01-17 at 19:12 +0000, Ian McDonald-ONLINE wrote: > To be clear, I am not splitting the modules. My intention is to pre-load > all of them; the module has not been split into *.al files, and when I > trussed the Apache process, the startup.pl script was reading > Time/Piece.pm (which has all the functions in it). It cannot find the > <function>.al file because it does not exist.
Oh, got it. I seem to remember having this problem before with Time::Piece, but I don't remember how I fixed it and it isn't in the archive. What happens if you remove the () after "use Time::Piece" in your script? It also looks like your attempt to manually call Time::Piece::import called it as a method, which is not correct. - Perrin