Skip to content

Commit 56c53d2

Browse files
author
Sebastiano Merlino
committed
Changed travis installation to not use packages
1 parent 3546789 commit 56c53d2

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

.travis.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,11 @@ language: cpp
22
compiler: gcc
33
# Change this to your needs
44
before_install:
5-
- wget http://199.231.187.83/resources/libmicrohttpd10_0.9.20-1_i386.deb
6-
- wget http://199.231.187.83/resources/libmicrohttpd-dev_0.9.20-1_i386.deb
7-
- sudo apt-get install libc6 libgcrypt11 libgnutls26
8-
- sudo dpkg -i libmicrohttpd10_0.9.20-1_i386.deb libmicrohttpd-dev_0.9.20-1_i386.deb
5+
- wget http://199.231.187.83/resources/libmicrohttpd-0.9.20.tar.gz
6+
- tar -xvzf libmicrohttpd-0.9.20.tar.gz
7+
- cd libmicrohttpd-0.9.20
8+
- ./configure
9+
- make
10+
- make install
11+
- cd ..
912
script: ./bootstrap && mkdir build && cd build && ../configure && make && make check

0 commit comments

Comments
 (0)