Skip Menu |

This queue is for tickets about the WWW-Salesforce CPAN distribution.

Report information
The Basics
Id: 26983
Status: resolved
Priority: 0/
Queue: WWW-Salesforce

People
Owner: Nobody in particular
Requestors: tom@eborcom.com (no email address)
Cc:
AdminCc:

Bug Information
Severity: Important
Broken in: 0.082
Fixed in: (no value)



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 );
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 );
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
Tom, Thanks. This oversight has been fixed in subversion and will be in the next release. If you notice any other errors, please let me know. Thanks, Chase On Tue May 08 06:08:21 2007, tom@eborcom.com wrote: Show quoted text
> 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