Subject: | Missing Dependency on Crypt::SSLeay |
The Makefile.PL for WWW::Salesforce lists SOAP::Lite in PREREQ_PM but
not Crypt::SSLeay. WWW::Salesforce uses SOAP over HTTPS and so depends
on Crypt::SSLeay.
Thanks for maintaining this module,
Tom Hukins
Subject: | salesforce-dependency.patch |
--- Makefile.PL.orig 2007-02-15 15:41:56.000000000 +0000
+++ Makefile.PL 2007-05-08 11:01:50.000000000 +0100
@@ -30,5 +30,8 @@
WriteMakefile(
NAME => 'WWW::Salesforce',
VERSION_FROM => 'lib/WWW/Salesforce.pm', # finds $VERSION
- PREREQ_PM => { 'SOAP::Lite' => 0.68 }, # e.g., Module::Name => 1.1
+ PREREQ_PM => {
+ 'SOAP::Lite' => 0.68,
+ 'Crypt::SSLeay' => 0,
+ }, # e.g., Module::Name => 1.1
);