Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add c-ares 1.12.0 to Docker image (#143). #447

Merged
merged 1 commit into from
Feb 8, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
add-apt-repository -y ppa:ubuntu-toolchain-r/test
apt-get update
Expand Down Expand Up @@ -65,6 +65,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