Page 1 of 1

Linux library versions mismatch

Posted: Fri Oct 18, 2013 5:09 pm
by Unaccounted4
The libcrypto and libssl versions the game needs are old. libssl.so.1.0.0 and libcrypto.so1.0.0, current would libssl.so.1.0.1e and libcrypto.so.1.0.1e

If you happen to be running Fedora, Arch or any other distro that updates more often than once every 6 months, you'll need to run the following two commands:

Code: Select all

sudo ln -s /usr/lib/libssl.so.1.0.1e /usr/lib/libssl.so.1.0.0

sudo ln -s /usr/lib/libcrypto.so.1.0.1e /usr/lib/libcrypto.so.1.0.0

Re: Linux library versions mismatch

Posted: Fri Oct 18, 2013 5:16 pm
by SephiRok
I'll add those two libs to the package with the next version.

Thanks!