Hi,
I've developed an application with Strawberry Perl 5.8.9.4
using wxPerl
. The application is compiled using:
wxpar -f Crypto -F Crypto -M Filter::Crypto::Decrypt --compress=9 --gui --icon=icon.ico --lib=./lib --module=App::Order --module=Wx --module=App::GUI::Main --module=App::GUI::Frame --module=App::GUI::Forms::Settings --module=App::GUI::Forms::Settings::Signature --module=App::Task::StripAndMail --module=App::Mode::Terminal --module=App::Mode::GUI --output="bin\PDF Mailer.exe" "PDF Mailer.pl"`.
I've come to the point of deploying it to the customers PC. For this I use a setup created with InnoSetup which copies all the required DLL's to the system32 folder. I've tested this on my own and on another system that doesn't have Strawberry Perl installed. This other system made me figure out which DLL's I needed to include, which are:
- libeay32.dll
- mingwm10.dll
- wxbase28u_gcc_wxp_binary_10_0.dll
- wxmsw28u_adv_gcc_wxp_binary_10_0.dll
- wxmsw28u_core_gcc_wxp_binary_10_0.dll
However, my client installed the setup and upon starting the application the cursor just changes to the loading indicator and returns normal afterwards. The application doesn't seem to properly startup nor is it reporting a missing DLL.
I've had the same problem before when mingwm10.dll
was missing. So I think it's a missing DLL, but I've got no clue where to seek.
I've modified my system's PATH to only include the system32 folder to make sure the application starts with the DLL's provided in the app's folders. I also removed all DLL's that were isntalled by my setup from the system32 folder.
My development machine is running Windows XP Prof. SP3. The system of the client is running Windows XP Home SP3.
Any thoughts or pointers would be much appreciated.