From: Daniel Stenberg Date: Mon, 18 Sep 2017 08:49:38 +0000 (+0200) Subject: travis: on mac, don't install openssl or libidn X-Git-Tag: curl-7_56_0~50 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1a072796d390a7f56739d48a5158c250e211e2f7;p=thirdparty%2Fcurl.git travis: on mac, don't install openssl or libidn - openssl is already installed and causes warnings when trying to install again - libidn isn't used these days, and homebrew doesn't seem to have a libidn2 package to replace with easily Closes #1895 --- diff --git a/.travis.yml b/.travis.yml index 82e3edb7ad..541628d99f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -81,7 +81,7 @@ install: - pip install --user cpp-coveralls - if [ "$TRAVIS_OS_NAME" == "osx" ]; then brew update > /dev/null; fi - if [ "$TRAVIS_OS_NAME" == "osx" ]; then brew reinstall libtool > /dev/null; fi - - if [ "$TRAVIS_OS_NAME" == "osx" ]; then brew install openssl libidn rtmpdump libssh2 c-ares libmetalink libressl nghttp2 libmetalink; fi + - if [ "$TRAVIS_OS_NAME" == "osx" ]; then brew install rtmpdump libssh2 c-ares libmetalink libressl nghttp2 libmetalink; fi - if [ $TRAVIS_OS_NAME = linux ]; then curl -L https://github.com/nghttp2/nghttp2/releases/download/v1.24.0/nghttp2-1.24.0.tar.gz | tar xzf - &&