Please bear with me as I am in the midst of my crash-course in Linux upgrade management.
I am trying to upgrade from openssl-0.9.8 to openssl-1.0.0 on SUSe 10.1 32bit with HP dl380's. I have used the following commands: ./config --prefix=usr make make test make install added /usr/lib to /etc/ld.so.conf ldconfig 'openssl version' returns OpenSSl 1.0.0 29 Mar 2010 At first I thought everything worked until I attempted an openSSH upgrade. This gave me the SSL headers do not match the librarys error. Checking ldd gives this: >ldd /usr/bin/openssl linux-gate.so.1 => (0xffffe000) libdl.so.2 => /lib/libdl.so.2 (0xb7f0c000) libc.so.6 => /lib/libc.so.6 (0xb7de0000) /lib/ld-linux.so.2 (0xb7f26000) I did a search for libssl.so.1.0.0 and found nothing in whole system, even in the /tmp directory where I compiled the program. I have tried a to reinstall by changing to './config --prefix=/opt/ssl' in order to see what is installed but after 'make && make install' libssl.so.1.0.0 is still none existent. I am new to linux package upgrading so I may be missing some links but I need something to link to. Any help is greatly appreciated. Thanks Jon