I'm not real familiar with PerlApp, having read briefly about it and never used it. However, it seems you're using a tool called PerlSvc which bundles perl, some modules, and your original work into an executable file. The the PerlSvc.pm that you can't find in the file system is probably part of the bundle written inside the executable.
That bundle includes (probably also internally, although perhaps via the filesystem) Win32.pm to get some of its work done. The function it is counting on being available in Win32.pm is not available in the version it found to bundle into the executable. Win32 says that BuildNumber is only available in ActiveState's ActivePerl binary build. You must be using that version of the module in your bundling system in order to have that subroutine, it seems.
Check how PerlSvc and PerlApp in general are documented to use include paths and how their @INC is set up. Make sure the versions of any libraries you need for proper function are the versions those tools find first.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.