I solved this by installing aptitude install libssl0.9.8 libssl-dev
in my Debian Etch. You need OpenSSL libraries and headers for Crypt::OpenSSL::Random to install. ----- Original Message ----- From: Ming Hou To: users@spamassassin.apache.org Sent: Tuesday, May 22, 2007 2:00 AM Subject: Re: Spamassassin 3.2.0 Thank all of your replies. I did try the following option: perl Makefile.PL INC='-I/usr/local/ssl/include' LIBS='-L/usr/local/ssl/lib -lssl -lcrypto' The "make test" still failed for the SSL portion. Any ideal? Thanks. ming Rosenbaum, Larry M. wrote: 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)