OpenSSL: Difference between revisions

From CLONWiki
Jump to navigation Jump to search
Boiarino (talk | contribs)
No edit summary
Boiarino (talk | contribs)
No edit summary
Line 23: Line 23:
                   solaris64-x86_64-cc
                   solaris64-x86_64-cc


Configure for Linux if nedded:
  ./config --prefix=/usr/local --openssldir=/usr/local/share
Compile and install:
Compile and install:


   gmake
   gmake
   gmake install
   gmake install

Revision as of 02:21, 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 --openssldir=/usr/local/share solaris-sparcv9-cc
       other possible flags:
                 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

Configure for Linux if nedded:

 ./config --prefix=/usr/local --openssldir=/usr/local/share

Compile and install:

 gmake
 gmake install