It is looking for a version of the SSL library that you do not have. An easy way to fix it (I did not check the correct behavior of the library itself) symbolically links it. Run them in your shell:
locate libssl
It should return something like:
/lib/i386-linux-gnu/libssl.so.1.0.0 /lib/x86_64-linux-gnu/libssl.so.1.0.0 /usr/lib/firefox-8.0/libssl3.so /usr/lib/i386-linux-gnu/libssl.so.1.0.0 /usr/lib/thunderbird-8.0/libssl3.so /usr/lib/x86_64-linux-gnu/libssl.so /usr/lib/x86_64-linux-gnu/libssl.so.1.0.0 /usr/lib/x86_64-linux-gnu/libssl3.so /usr/lib/x86_64-linux-gnu/libssl3.so.1d
The one you want is definitely / usr / lib / x86_64-linux-gnu or similar, depending on your platform.
Then create a symlink:
ln -s libssl3.so libssl.so
replacing libssl3.so with the version you installed.
source share