We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3546789 commit 56c53d2Copy full SHA for 56c53d2
.travis.yml
@@ -2,8 +2,11 @@ language: cpp
2
compiler: gcc
3
# Change this to your needs
4
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
+ - wget http://199.231.187.83/resources/libmicrohttpd-0.9.20.tar.gz
+ - tar -xvzf libmicrohttpd-0.9.20.tar.gz
+ - cd libmicrohttpd-0.9.20
+ - ./configure
9
+ - make
10
+ - make install
11
+ - cd ..
12
script: ./bootstrap && mkdir build && cd build && ../configure && make && make check
0 commit comments