Thank you for the report. I am a little confused by this because I have
sub filter_libs {
my $opt = shift;
my $libs = shift;
try {
require Devel::CheckLib;
Devel::CheckLib->import;
}
catch {
return $libs;
};
...
unless (grep /crypt|ssl|eay/, @found) {
printf(
"Cannot link with any of the requested SSL libraries '%s'\n",
join(', ' => @$libs),
);
exit 0;
which means if Devel::CheckLib is not installed, you should not be getting to that message.
-- Sinan
On Wed Apr 23 16:39:51 2014, SREZIC wrote:
Show quoted text> On 2014-04-23 16:20:39, SREZIC wrote:
> > When executing Makefile.PL with FreeBSD 10.0 and perl 5.19.11 I get
> > the error message:
> >
> > Cannot link with any of the requested SSL libraries 'ssl, crypto,
> > ssl32, ssleay32, eay32, libeay32, z'
> >
> > However, on the very same system the distribution builds fine with
> > all
> > perls until 5.19.10 (inclusive). On this system Crypt-SSLeay-0.65_14
> > (and earlier versions) works even with the problematic 5.19.11.
>
> Maybe the problem is that Devel::CheckLib is not installed with the
> problematic perl.
>
> Regards,
> Slaven