in reply to Issues while building Net::SSLeay module on linux and windows
(I can't recall why "-lcrypt32" is there ... I strongly suspect it's not needed, but it's not causing any breakage.use ExtUtils::MakeMaker; WriteMakefile( 'NAME' => 'Net::SSLeay', 'VERSION_FROM' => 'lib/Net/SSLeay.pm', 'LIBS' => ['-lssl -lcrypto -lcrypt32 -lz'], );
That works fine for me, except that on some 64-bit builds of perl I get a t/ocsp.t failure (which I ignore) during the "dmake test" stage.use ExtUtils::MakeMaker; WriteMakefile( 'NAME' => 'Net::SSLeay', 'VERSION_FROM' => 'lib/Net/SSLeay.pm', 'INC' => '-IC:/someplace/include', 'LIBS' => ['-LC:/someplace/lib -lssl -lcrypto -lcrypt3 +2 -lz'], );
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Issues while building Net::SSLeay module on linux and windows
by narasimp (Novice) on Apr 22, 2015 at 01:59 UTC |