> I appear to need a libcrypto.so.0 file...  how  do I make that?

Create a symlink:

ln -s libcrypto.so libcrypto.so.0

Although in the true shared library sense, you'd really want it the other
way around:

You create a 'libcrypto.so.0.9.5' and then symlink that.

ln -s libcrypto.so.0.9.5 libcrypto.so.0
ln -s libcrypto.so.0 libcrypto.so

I haven't look at how OpenSSL is doing shared library minor versioning
these days.

Out of curiosity (and if you don't mind), what are you linking that's
asking you for this?

--Chris



______________________________________________________________________
OpenSSL Project                                 http://www.openssl.org
User Support Mailing List                    [EMAIL PROTECTED]
Automated List Manager                           [EMAIL PROTECTED]

Reply via email to