Disable ipv6 in curl

This commit is contained in:
Jeremy Soller 2019-03-31 15:07:38 -06:00
parent 03a7f39cef
commit 8af6ae249a
No known key found for this signature in database
GPG Key ID: E988B49EE78A7FB1

View File

@ -23,13 +23,14 @@ function recipe_build {
--prefix=/ \
--build=${BUILD} \
--host=${HOST} \
--disable-tftp \
--disable-ftp \
--disable-ipv6 \
--disable-ntlm-wb \
--disable-tftp \
--disable-threaded-resolver \
--with-zlib="$sysroot" \
--with-ca-path=/ssl/certs \
--with-ssl="$sysroot" \
--with-ca-path=/ssl/certs
--with-zlib="$sysroot"
make -j"$(nproc)"
skip=1
}