Make Travis build bootstrap daemon again

This commit is contained in:
Maxim Biro 2014-02-22 16:54:33 -05:00
parent 388b1229b9
commit 9b1de38b60

View File

@ -15,6 +15,14 @@ before_script:
- cd ..
#installing yasm, needed for compiling vpx
- sudo apt-get install yasm > /dev/null
#installing libconfig, needed for DHT_bootstrap_daemon
- wget http://www.hyperrealm.com/libconfig/libconfig-1.4.9.tar.gz > /dev/null
- tar -xvzf libconfig-1.4.9.tar.gz > /dev/null
- cd libconfig-1.4.9
- ./configure > /dev/null
- make -j3 > /dev/null
- sudo make install > /dev/null
- cd ..
#installing libopus, needed for audio encoding/decoding
- wget http://downloads.xiph.org/releases/opus/opus-1.0.3.tar.gz > /dev/null
- tar xzf opus-1.0.3.tar.gz > /dev/null
@ -37,7 +45,7 @@ before_script:
script:
- autoreconf -i
- CFLAGS=-Ofast ./configure
- CFLAGS=-Ofast ./configure --enable-daemon
- make -j3
- make check
- make dist