Hi, the main suspect here is Net::SSLeay. It uses OpenSSL under the hood and probably libssl*.dll doesn't get packed (PAR::Packer _never_ packs non-Perl DLLs automatically). To check:
- find the Net::SSLeay "glue" DLL ...\auto\Net\SSLeay\SSLeay.dll - check (e.g. using objdump) whether it is indeed linked against some libssl*.dll, say libssl420.dll - if that's the case, rebuild your packed executable with "pp --link libssl420.dll ..." Cheers, Roderich
