in reply to Missing Module from Net::Twitter::Role::OAuth ?
I suspect that the problem you are having is that when you run the script from source code, the autoloader is able to make something available "automagically" that wasn't immediately apparent from the source code. When the .exe got made PDK didn't realize and include this run-time dependency.
I've found the easiest way is add "use" statements to the source code rather than trying to mess with options to force inclusion of a module. There is a Digest::HMAC_SHA1 module. I suspect adding a "use Digest::HMAC_SHA1;" statement is going to help.
If you are at a company (costs a some money), move up to PDK 9.
Oh, you mentioned "small exe" - not sure what you meant by that. I always build standalone .exe's although it is possible to build smaller ones that have dependencies. Make sure that you can successfully make (and run) a standalone one before trying to build something else.
|
|---|