Unverified Commit 9e9e4e2d authored by Matthew Brett's avatar Matthew Brett
Browse files

Add curl build flags for manylinux

parent 07a9cdc5
......@@ -251,12 +251,14 @@ function build_curl {
if [ -e curl-stamp ]; then return; fi
if [ -n "$IS_OSX" ]; then
flags="--with-darwinssl"
else
else # manylinux
prefix="LIBS=-ldl"
flags="--with-ssl"
build_openssl
fi
fetch_unpack https://curl.haxx.se/download/curl-${CURL_VERSION}.tar.gz
(cd curl-${CURL_VERSION} \
&& ./configure --prefix=$BUILD_PREFIX $flags \
&& $prefix ./configure --prefix=$BUILD_PREFIX $flags \
&& make \
&& make install)
touch curl-stamp
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment