From subsecret
Jump to: navigation, search
m (Steffen Mikkelsen moved page Installing gdbm, db, perl to Installing gdbm, db, perl, bc)
No edit summary
Line 25: Line 25:
  cd ..
  cd ..
   
   
==openssl==
tar xf openssl-1.0.1e.tar.gz
cd openssl-1.0.1e
./config --prefix=/tools/
make -j 8
make install
cd ..
We are now ready for next step
We are now ready for next step

Revision as of 16:16, 9 May 2013

gdbm

tar xf gdbm-1.10.tar.gz
cd gdbm-1.10
./configure  --prefix=/tools 
make -j 8
make install
cd ..

db

tar xf db-5.3.21.tar.gz
cd db-5.3.21
cd build_unix
../dist/configure  --prefix=/tools 
make -j 8
make install
cd ..
cd ..

perl

tar xf perl-5.16.3.tar.gz
cd perl-5.16.3
sh Configure -des -Dprefix=/tools/ -Dstatic_ext='Data/Dumper Fcntl IO' 
make -j 8
make install
cd ..

openssl

tar xf openssl-1.0.1e.tar.gz
cd openssl-1.0.1e
./config --prefix=/tools/
make -j 8
make install
cd ..

We are now ready for next step