Skip to content

Commit

Permalink
Add c-ares 1.12.0 to Docker image (#143). (#447)
Browse files Browse the repository at this point in the history
  • Loading branch information
htuch authored and junr03 committed Feb 8, 2017
1 parent 86219a4 commit 5ba9f93
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion ci/build_container/build_container.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ set -e

# Setup basic requirements and install them.
apt-get update
apt-get install -y wget software-properties-common make cmake git python python-pip clang-format-3.6 bc
apt-get install -y wget software-properties-common make cmake git python python-pip clang-format-3.6 bc libtool automake
apt-get install -y golang
# For debugging.
apt-get install -y gdb strace
Expand Down Expand Up @@ -67,6 +67,16 @@ make install
cd ..
rm -fr nghttp2*

# c-ares
wget https://github.com/c-ares/c-ares/archive/cares-1_12_0.tar.gz
tar xf cares-1_12_0.tar.gz
cd c-ares-cares-1_12_0
./buildconf
./configure --prefix=$THIRDPARTY_BUILD --enable-shared=no --enable-lib-only
make install
cd ..
rm -fr cares* c-ares*

# protobuf
wget https://github.com/google/protobuf/releases/download/v3.0.0/protobuf-cpp-3.0.0.tar.gz
tar xf protobuf-cpp-3.0.0.tar.gz
Expand Down

0 comments on commit 5ba9f93

Please sign in to comment.