Shared object "libssl.so.8" not found, required by "libcurl.so.7"

I faced this error FreeBSD 9.3 X64.
Code:
Shared object "libssl.so.8" not found, required by "libcurl.so.7"
How can I fix it?

After search I found that it may be problem in OpenSSL.
I installed it so but now I face this:
Code:
/usr/local/lib/libssl.so.8: unsupported file layout
 
Last edited by a moderator:
Do not "install" things from outside by themselves. If you think the OpenSSL library is wrong, either rebuild from source or reinstall the port or package.

Now you have two problems to fix, OpenSSL and curl. Was OpenSSL installed from ports or packages, or was it just the base system?

To fix curl, rebuild it from the port. Select the GSSAPI_NONE option. Or install the package.
 
The libssl.so.8 is from -CURRENT. So you probably installed a package meant for -CURRENT on your 9.3-RELEASE. That's never going to work. Undo whatever you did last.
 
Back
Top