OpenSSL: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 10: | Line 10: | ||
cd openssl-0.9.8d | cd openssl-0.9.8d | ||
Configure for Sparc Solaris: | Configure for Sparc Solaris (32-bit version): | ||
./Configure --prefix=/usr/local | ./Configure --prefix=/usr/local | ||
Configure for Opteron Solaris: | Configure for Sparc Solaris (64-bit version): | ||
./Configure --prefix=/usr/local | |||
Configure for Opteron Solaris (32-bit version): | |||
./Configure --prefix=/usr/local solaris-x86-cc | ./Configure --prefix=/usr/local solaris-x86-cc | ||
Configure for Opteron Solaris (64-bit version; compiled fine but 'nrpe' does not like it, so we stayed with 32-bit): | |||
./Configure --prefix=/usr/local solaris64-x86_64-cc | ./Configure --prefix=/usr/local solaris64-x86_64-cc | ||
Revision as of 23:24, 5 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 on Solaris do following:
Download openssl-0.9.8d.tar.gz from web to /usr/local/downloads. Then:
cp openssl-0.9.8d.tar.gz /usr/local/src/ cd /usr/local/src/ gunzip openssl-0.9.8d.tar.gz tar xvf openssl-0.9.8d.tar cd openssl-0.9.8d
Configure for Sparc Solaris (32-bit version):
./Configure --prefix=/usr/local
Configure for Sparc Solaris (64-bit version):
./Configure --prefix=/usr/local
Configure for Opteron Solaris (32-bit version):
./Configure --prefix=/usr/local solaris-x86-cc
Configure for Opteron Solaris (64-bit version; compiled fine but 'nrpe' does not like it, so we stayed with 32-bit):
./Configure --prefix=/usr/local solaris64-x86_64-cc
Compile and install:
gmake gmake install