From subsecret
Jump to: navigation, search
No edit summary
No edit summary
Line 1: Line 1:
==gdbm==
==gdbm==
(if this gives an error, it might have to be installed as root)
  tar xf gdbm-1.10.tar.gz
  tar xf gdbm-1.10.tar.gz
  cd gdbm-1.10
  cd gdbm-1.10

Revision as of 14:58, 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 ..

We are now ready for next step