openssl

Current Version: 0.9.6d

Links

dir: http://www.openssl.org/source

file: openssl-0.9.6d.tar.gz

Setup information

Edit this to fit your arch.
cp Configure Configure.bak 
sed -e '/"linux-elf"/ s,-m486,-march=i686,' Configure.bak > \
	Configure 

pre

./config --prefix=/opt/openssl --openssldir=/opt/openssl \
	shared threads 

config

make 

make

make install 

install

cd /usr/lib 
for file in lib{crypto,ssl}.{a,so.0.9.6}
do
	ln -sf $OPENSSL_ROOT/lib/$file
done
ln -sf libcrypto.so.0.9.6 libcrypto.so.0 
ln -sf libssl.so.0.9.6 libssl.so.0 
ln -sf libcrypto.so.0 libcrypto.so 
ln -sf libssl.so.0 libssl.so 
cd /usr/include 
ln -sf /opt/openssl/include/openssl 

post