diff options
author | Jack Lloyd <[email protected]> | 2016-08-19 16:06:28 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2016-08-19 16:06:28 -0400 |
commit | 61547da39fe61de133cf9dfd0018c180c51baba4 (patch) | |
tree | 40955eea8fdb2240bf2d5d8848b2cff776a32c7f | |
parent | 165a21393f0061a6f3c68b9244a20b41c16c2a78 (diff) | |
parent | ea810f6f4e00f511c2fde307e69d56755904f64e (diff) |
Merge GH #594: PKCS #11 in Travis builds
-rwxr-xr-x | src/scripts/ci/travis/build.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/scripts/ci/travis/build.sh b/src/scripts/ci/travis/build.sh index b3267ee70..35bff74df 100755 --- a/src/scripts/ci/travis/build.sh +++ b/src/scripts/ci/travis/build.sh @@ -32,18 +32,18 @@ fi if [ "$TARGETOS" = "ios32" ]; then ./configure.py "${CFG_FLAGS[@]}" --cpu=armv7 --cc=clang \ --cc-abi-flags="-arch armv7 -arch armv7s -stdlib=libc++" \ - --prefix=/tmp/botan-installation + --with-pkcs11 --prefix=/tmp/botan-installation elif [ "$TARGETOS" = "ios64" ]; then ./configure.py "${CFG_FLAGS[@]}" --cpu=armv8-a --cc=clang \ --cc-abi-flags="-arch arm64 -stdlib=libc++" \ - --prefix=/tmp/botan-installation + --with-pkcs11 --prefix=/tmp/botan-installation else $CXX --version ./configure.py "${CFG_FLAGS[@]}" --cc="$CC" --cc-bin="$CXX" \ --with-bzip2 --with-lzma --with-openssl --with-sqlite --with-zlib \ - --prefix=/tmp/botan-installation + --with-pkcs11 --prefix=/tmp/botan-installation fi # build |