Good afternoon, wise monks. An interesting problem for you - and I don't see any mention of it on the site.

I've an application that looks a bit like this:

#!/c:/perl/bin/perl


use strict;
use DBI;
use Wx;
use myClass;

...blah....
Anyway, It all just works perfectly, when I both run and it build an exe with pp on my machine. This is, of course, the case, since I've lots of perl specific stuff on my machine, and all the paths are set up correctly (etc.)
I'm using the following to build it:
pp -M Wx -M DBI -M myClass -B -o gui.exe foo.pl

I'm also packaging lots of DLLs, and installing them in C:/Winnt/system32 with it, in order to satisfy any requirements, these are:
wxmsw26_stc_gcc_custom.dll
wxmsw26_media_gcc_custom.dll
wxmsw26_html_gcc_custom.dll
wxmsw26_gl_gcc_custom.dll
wxmsw26_core_gcc_custom.dll
wxmsw26_adv_gcc_custom.dll
wxbase26_gcc_custom.dll
mingwm10.dll
perl58.dll

The main problem is that it just doesn't work on other win32 machines when I deploy it(*). I just can't think of other things I need to do, and I was wondering if the monks had any pearls of wisdom to pass on to me?

Thanks!

(*) I'm using the Nullsoft installer to build a proper installer for the application, for the avoidance of doubt!

In reply to Perl, Wx, DBI and PAR on Win32 - deployment problems? by lukeyboy1

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • 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:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.