Beefy Boxes and Bandwidth Generously Provided by pair Networks
We don't bite newbies here... much
 
PerlMonks  

Re^2: Relocation errors in Crypt::SSLeay in Solaris 10

by arielCo (Sexton)
on Mar 15, 2014 at 01:48 UTC ( [id://1078411]=note: print w/replies, xml ) Need Help??


in reply to Re: Relocation errors in Crypt::SSLeay in Solaris 10
in thread Relocation errors in Crypt::SSLeay in Solaris 10

That works - thanks a bunch. For anyone else reading, it's easy to pass this through 'o conf':

   o conf makepl_arg 'LIBS="-lz -L/usr/sfw/lib/64 -lssl -lcrypto"'

Long story: turns out that -lssl -lcrypto are being left out of EXTRALIBS and LDLOADLIBS in the Makefile (no idea why - Makefile.PL comes with LIBS => [q{-lz -lssl -lcrypto -lssl32 -lssleay32 -leay32}]). So putting them in the Makefile and building again from the shell works too:

EXTRALIBS = -lz -lssl -lcrypto LDLOADLIBS = -lz -lssl -lcrypto

Replies are listed 'Best First'.
Re^3: Relocation errors in Crypt::SSLeay in Solaris 10
by syphilis (Archbishop) on Mar 15, 2014 at 03:20 UTC
    Makefile.PL comes with LIBS => q{-lz -lssl -lcrypto -lssl32 -lssleay32 -leay32})

    If those libraries are not located at the 'perl Makefile.PL' step, they don't get written in to the generated Makefile.
    It would seem that /usr/sfw/lib/64 is not being searched - for which another fix would be to change the quoted entry in the Makefile.PL to:
    LIBS => [q{-lz -L/usr/sfw/lib/64 -lssl -lcrypto -lssl32 -lssleay32 -le +ay32}])
    Passing it through 'o conf' is probably a better solution - in that it doesn't involve manual editing of any files.
    Yet another option would be to add /usr/sfw/lib/64 to the LIBRARY_PATH environment variable:
    export LIBRARY_PATH=$LIBRARY_PATH:/usr/sfw/lib/64
    Cheers,
    Rob

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1078411]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others chilling in the Monastery: (6)
As of 2024-03-28 13:40 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found