Browse Source

parallel libsodium and socksify builds

auth
clowwindy 10 years ago
parent
commit
c214dbf7b5
  1. 2
      tests/libsodium/install.sh
  2. 2
      tests/socksify/install.sh

2
tests/libsodium/install.sh

@ -5,6 +5,6 @@ if [ ! -d libsodium-1.0.1 ]; then
tar xf libsodium-1.0.1.tar.gz || exit 1
fi
pushd libsodium-1.0.1
./configure && make && make install || exit 1
./configure && make -j2 && make install || exit 1
sudo ldconfig
popd

2
tests/socksify/install.sh

@ -5,6 +5,6 @@ if [ ! -d dante-1.4.0 ]; then
tar xf dante-1.4.0.tar.gz || exit 1
fi
pushd dante-1.4.0
./configure && make && make install || exit 1
./configure && make -j4 && make install || exit 1
popd
cp tests/socksify/socks.conf /etc/ || exit 1

Loading…
Cancel
Save