From subsecret
Jump to: navigation, search
 
(5 intermediate revisions by the same user not shown)
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
Line 15: Line 14:
  make -j 8
  make -j 8
  make install
  make install
#this line is hopefully not needed anymore
#ln -s /tools/lib/libdb-5.1.so /tools/lib/libdb-4.8.so
  cd ..
  cd ..
  cd ..
  cd ..
Line 22: Line 19:
==perl==
==perl==
  tar xf perl-5.16.3.tar.gz
  tar xf perl-5.16.3.tar.gz
#not needed: cp perl-5.12.3-libc-1.patch perl-5.12.3
  cd perl-5.16.3
  cd perl-5.16.3
#not needed: patch -p1 < perl-5.12.3-libc-1.patch
  sh Configure -des -Dprefix=/tools/ -Dstatic_ext='Data/Dumper Fcntl IO'  
  sh Configure -des -Dprefix=/tools/ -Dstatic_ext='Data/Dumper Fcntl IO'  
  make -j 8
  make -j 8
Line 30: Line 25:
  cd ..
  cd ..
   
   
==bc==
tar xf bc-1.06.tar.gz
cd bc-1.06
./configure --prefix /tools/
make -j 8
make install
==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

Latest revision as of 15:18, 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 ..

bc

tar xf bc-1.06.tar.gz
cd bc-1.06
./configure --prefix /tools/
make -j 8
make install

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