Not really. If you have the latest PAR and Moudule::Scandeps (a dependency), you shouldn't have to (at least with a regular module like Win32::Daemon).
Try these to see that its true :)
perl -e "use Win32::Daemon;print $/,$Win32::Daemon::VERSION,$/;"
scandeps -V -e "use Win32::Daemon;print $/,$Win32::Daemon::VERSION,$/;
+"
pp -e "use Win32::Daemon;print $/,$Win32::Daemon::VERSION,$/;"
a.exe
If it doesn't work for you (and you're on win32:), you're not using the latest and the greatest PAR (and its dependencies).
As a general rule, if `pp' isn't packing up everything it should be,
chances are you need to learn How to use PAR.
| MJD says "you can't just make shit up and expect the computer to know what you mean, retardo!" | | I run a Win32 PPM repository for perl 5.6.x and 5.8.x -- I take requests (README). | | ** The third rule of perl club is a statement of fact: pod is sexy. |
|