From c825d88dbf0a6d2eae127544369c915d104d5494 Mon Sep 17 00:00:00 2001 From: Job Evers-Meltzer Date: Thu, 15 Dec 2016 16:23:50 -0600 Subject: [PATCH] OSX is having https issues, hopefully this fixes it When I build locally, the resulting app doesn't have https issues. Looking over the build script output, I notice that its copying copying /usr/local/opt/openssl/lib/libssl.1.0.0.dylib -> /Users/jobevers/tmp/lbry/packaging/osx/lbry-osx-app/dist/LBRY.app/Contents/Frameworks such a line isn't present when travis builds. This version of libssl is installed by homebrew. Fingers crossed. --- packaging/travis/setup_osx.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/packaging/travis/setup_osx.sh b/packaging/travis/setup_osx.sh index 9a1448856..9fc187f70 100755 --- a/packaging/travis/setup_osx.sh +++ b/packaging/travis/setup_osx.sh @@ -6,4 +6,7 @@ set -o xtrace wget https://www.python.org/ftp/python/2.7.11/python-2.7.11-macosx10.6.pkg sudo installer -pkg python-2.7.11-macosx10.6.pkg -target / pip install -U pip +brew update brew install gmp +brew install openssl +brew link --force openssl