OpenSSL: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 2: | Line 2: | ||
but *.so libraries only, no *.a. Anyway, to install it do following: | but *.so libraries only, no *.a. Anyway, to install it do following: | ||
Download openssl-0.9. | Download openssl-0.9.7a.tar.gz from web to /usr/local/downloads (the same version we have on RHEL4). Then: | ||
cp openssl-0.9. | cp openssl-0.9.7a.tar.gz /usr/local/src/ | ||
cd /usr/local/src/ | cd /usr/local/src/ | ||
gunzip openssl-0.9. | gunzip openssl-0.9.7a.tar.gz | ||
tar xvf openssl-0.9. | tar xvf openssl-0.9.7a.tar | ||
cd openssl-0.9. | cd openssl-0.9.7a | ||
Configure for Sparc Solaris (32-bit version): | Configure for Sparc Solaris (32-bit version): |
Revision as of 00:37, 6 January 2007
OpenSSL comes with RHEL4. On Solaris it seems exist in /usr/lib/mps and /usr/include/mps but *.so libraries only, no *.a. Anyway, to install it do following:
Download openssl-0.9.7a.tar.gz from web to /usr/local/downloads (the same version we have on RHEL4). Then:
cp openssl-0.9.7a.tar.gz /usr/local/src/ cd /usr/local/src/ gunzip openssl-0.9.7a.tar.gz tar xvf openssl-0.9.7a.tar cd openssl-0.9.7a
Configure for Sparc Solaris (32-bit version):
./Configure --prefix=/usr/local solaris-sparcv9-cc
Configure for Sparc Solaris (64-bit version):
./Configure --prefix=/usr/local solaris64-sparcv9-cc
Configure for Opteron Solaris (32-bit version):
./Configure --prefix=/usr/local --openssldir=/usr/local/share solaris-x86-cc other possible flags: solaris-x86-gcc solaris64-x86_64-cc
Compile and install:
gmake gmake install