From e3bfb1795e21c5eed60fa90035b3e41b1bbab252 Mon Sep 17 00:00:00 2001 From: "Roger A. Light" Date: Tue, 25 Sep 2018 12:11:03 +0100 Subject: [PATCH] Attempt to fix Mac build on travis. --- travis-configure.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/travis-configure.sh b/travis-configure.sh index dd9e3755..033e9d7a 100755 --- a/travis-configure.sh +++ b/travis-configure.sh @@ -1,5 +1,7 @@ #!/bin/bash if [ "$TRAVIS_OS_NAME" == "osx" ]; then + export CFLAGS="-I/usr/local/opt/openssl/include $CFLAGS" + export LDFLAGS="-L/usr/local/opt/openssl/lib $LDFLAGS" cmake . fi