From c81c5281eef4bc467cc1e101bd99438198b703c7 Mon Sep 17 00:00:00 2001 From: Jack Lloyd Date: Tue, 4 Sep 2018 10:33:46 -0400 Subject: Try adding commoncrypto to macOS and iOS builds --- src/scripts/ci_build.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/scripts/ci_build.py b/src/scripts/ci_build.py index 6626ea18e..9f2f67d4d 100755 --- a/src/scripts/ci_build.py +++ b/src/scripts/ci_build.py @@ -170,12 +170,16 @@ def determine_flags(target, target_os, target_cpu, target_cc, cc_bin, ccache, ro if target_os in ['osx', 'linux']: flags += ['--with-bzip2', '--with-sqlite', '--with-zlib'] + if target_os in ['osx', 'ios']: + flags += ['--with-commoncrypto'] + if target_os == 'osx': # Test Boost on OS X flags += ['--with-boost'] # Travis has 10.12 as default image flags += ['--with-os-features=getentropy'] - elif target_os == 'linux': + + if target_os == 'linux': flags += ['--with-lzma'] if target_os == 'linux': -- cgit v1.2.3