Skip Menu |

This queue is for tickets about the Net_SSLeay.pm CPAN distribution.

Report information
The Basics
Id: 26958
Status: resolved
Priority: 0/
Queue: Net_SSLeay.pm

People
Owner: MIKEM [...] cpan.org
Requestors: boehm [...] webdynamite.com
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: 1.30
Fixed in: (no value)



Subject: Makefile.PL does not find openssl on OpenSolaris
Makefile.pm does not find openssl on OpenSolaris installations. Adding the following to Makefile.pm fixes the problem: --- Makefile.PL Mon May 7 13:13:51 2007 +++ Makefile.PL.fix Mon May 7 13:16:05 2007 @@ -46,6 +46,8 @@ || -x '/opt/ssl/sbin/openssl'; $openssl_path = '/usr/local/ssl' if -x '/usr/local/ssl/bin/openssl'; $openssl_path = '/apps/openssl/std' if -x '/apps/openssl/std/bin/openssl'; +# OpenSolaris installs openssl in /usr/sfw/bin +$openssl_path = '/usr/sfw' if -x '/usr/sfw/bin/openssl'; $openssl_path = shift if @ARGV && $ARGV[0] ne '--'; shift if $ARGV[0] eq '--'; # Rest of args are for MakeMaker
From: MIKEM [...] cpan.org
Hello igor, thanks for reporting this. The path guessing code has moved in the SVN version, but an appropriate change has now been made to the SVN version. Cheers. On Mon May 07 09:22:02 2007, igor wrote: Show quoted text
> Makefile.pm does not find openssl on OpenSolaris installations.
Adding Show quoted text
> the following to > Makefile.pm fixes the problem: > > --- Makefile.PL Mon May 7 13:13:51 2007 > +++ Makefile.PL.fix Mon May 7 13:16:05 2007 > @@ -46,6 +46,8 @@ > || -x '/opt/ssl/sbin/openssl'; > $openssl_path = '/usr/local/ssl' if -x
'/usr/local/ssl/bin/openssl'; Show quoted text
> $openssl_path = '/apps/openssl/std' if -x > '/apps/openssl/std/bin/openssl'; > +# OpenSolaris installs openssl in /usr/sfw/bin > +$openssl_path = '/usr/sfw' if -x '/usr/sfw/bin/openssl'; > $openssl_path = shift if @ARGV && $ARGV[0] ne '--'; > > shift if $ARGV[0] eq '--'; # Rest of args are for MakeMaker