> From: Christopher X. Candreva [mailto:[EMAIL PROTECTED] > > On Sat, 19 May 2007, Ming Hou wrote: > > > My issue Mail::DKIM and Mail::DomainKeys are required > Crypt::OpenSSL::Random > > and Crypt::OpenSSL::RSA. But, I could not get Crypt::OpenSSL::Random to > be > > built successfully because it always complained the following messages: > > > > Note (probably harmless): No library found for -lssl > > Note (probably harmless): No library found for -lcrypto > > Edit Makefile.PL and add -lssl and -lcrypto to the LIBS line. I also had > to > add an include line for the SSL headers. > > Then rerun Makefile.PL
Or you can try the following: perl Makefile.PL INC='-I/usr/local/ssl/include' LIBS='-L/usr/local/ssl/lib -lssl -lcrypto' (all on one line)