aboutsummaryrefslogtreecommitdiffstats
path: root/src/native/libjunbound/make-linux.sh
blob: 991eb1702b47998a699a259d9c1a6207f6868646 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#!/bin/bash
set -e

out=`pwd`/build/linux
prefix=$out/libs
export JAVA_HOME=/usr/lib/jvm/default-java/

mkdir -p $out
mkdir -p $prefix

cd $out

expat=expat-2.1.0
unbound=unbound-1.5.1

wget -nc http://downloads.sourceforge.net/project/expat/expat/2.1.0/$expat.tar.gz
wget -nc http://unbound.net/downloads/$unbound.tar.gz

tar -xzvf $expat.tar.gz
tar -xzvf $unbound.tar.gz

cd $out/$expat
./configure --with-pic --prefix=$prefix
make
make install

cd $out/$unbound
patch -p 1 -i $out/../../unbound.patch
./configure --with-pic --prefix=$prefix --with-libexpat=$prefix
make
make install

cd $out
gcc $out/../../src/net_java_sip_communicator_impl_dns_UnboundApi.cpp -fpic -shared -o libjunbound.so -I$JAVA_HOME/include -Wl,-Bstatic -L$prefix/lib -lunbound -I$prefix/include -Wl,-Bdynamic -lcrypto -lssl
strip libjunbound.so