Unverified Commit 0d02ad9b authored by Matthew Brett's avatar Matthew Brett
Browse files

Try to fix curl build for manylinux

parent c0e6667f
...@@ -252,13 +252,13 @@ function build_curl { ...@@ -252,13 +252,13 @@ function build_curl {
if [ -n "$IS_OSX" ]; then if [ -n "$IS_OSX" ]; then
flags="--with-darwinssl" flags="--with-darwinssl"
else # manylinux else # manylinux
prefix="LIBS=-ldl"
flags="--with-ssl" flags="--with-ssl"
build_openssl build_openssl
fi fi
fetch_unpack https://curl.haxx.se/download/curl-${CURL_VERSION}.tar.gz fetch_unpack https://curl.haxx.se/download/curl-${CURL_VERSION}.tar.gz
(cd curl-${CURL_VERSION} \ (cd curl-${CURL_VERSION} \
&& $prefix ./configure --prefix=$BUILD_PREFIX $flags \ && if [ -z "$IS_OSX" ]; then LIBS=-ldl; fi \
&& ./configure --prefix=$BUILD_PREFIX $flags \
&& make \ && make \
&& make install) && make install)
touch curl-stamp 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