forked from I2P_Developers/i2p.i2p
* i2psnark: Remove orion and gaytorrents from default tracker list * Remove orion from jump list and from eepsite_index.html * Jbigi: Change jbigi version to 4.2.2 in build scripts - tested by amiga * Capitalize OutboundMessageDistributor job name * TunnelPool: Add a warning if all tunnels are backlogged
23 lines
409 B
Bash
Executable File
23 lines
409 B
Bash
Executable File
#/bin/sh
|
|
|
|
VER=4.2.2
|
|
echo "Building the jbigi library with GMP Version $VER"
|
|
|
|
echo "Extracting GMP..."
|
|
tar -xjf gmp-$VER.tar.bz2
|
|
echo "Building..."
|
|
mkdir -p lib/
|
|
mkdir -p bin/local
|
|
cd bin/local
|
|
case `uname -sr` in
|
|
Darwin*)
|
|
# --with-pic is required for static linking
|
|
../../gmp-$VER/configure --with-pic;;
|
|
*)
|
|
../../gmp-$VER/configure;;
|
|
esac
|
|
make
|
|
sh ../../build_jbigi.sh static
|
|
cp *jbigi???* ../../lib/
|
|
cd ../..
|