in reply to Re: Crypt::OpenSSL::Random on Win32 with ActiveState
in thread Crypt::OpenSSL::Random on Win32 with ActiveState
Thanks for the hints Rob and "Anonymous Monk". Using a combination of both, I was able to get it to work.
I ended up doing:
copy <ossldir>/libeay32.dll <ossldir>/ssl.dll copy <ossldir>/bin/libeay32.dll <ossldir>/bin/ssl.dll copy <ossldir>/lib/libeay32.lib <ossldir>/bin/ssl.lib
perl Makefile.PL LIBDIR="<ossldir>/lib" INCDIR="<ossldir>/include"
-lssl -lcrypto not found. Need to install the openssl devel packages. 'INCDIR' is not a known MakeMaker parameter name. 'LIBDIR' is not a known MakeMaker parameter name.
nmake nmake test nmake install
|
|---|