Hi folks, I have par 0.65 on Activestate 5.6 perl (on Win32). I am trying to compile a perl script using "pp" which has in the first few lines
require "cmdQueue.pl"; where this file normally lives in the same directory as the main program. However, when I run the resulting exe I get an error: "Can't locate ./cmdQueue.pl at script/multi-client13.pl line 14." The file cmdQueue is not a seperate package, it is merely a convenient way of me separating some extra code into a different file, and so using "require" may not even be the optimal way to have done this? I have not worked out what the correct syntax is to use "use cmdQueue.pl" for example. I have tried including the extra modules explicity with -M cmdQueue.pl, but this doesn't seem to change anything... I sense this is an @INC problem, but any help on how to compile this would be appreciated Thanks
