From 19f89cf9c3a3373555891c32c87dda2d1397710b Mon Sep 17 00:00:00 2001 From: William Parker <52783864+Willsparker@users.noreply.github.com> Date: Sun, 15 Mar 2020 21:54:05 +0000 Subject: [PATCH] Enable use of OpenSSL-1.1.1d-64 VS2017 for Windows JDK11+ (#1602) --- build-farm/platform-specific-configurations/windows.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/build-farm/platform-specific-configurations/windows.sh b/build-farm/platform-specific-configurations/windows.sh index 8120528e5..bbe9b3463 100755 --- a/build-farm/platform-specific-configurations/windows.sh +++ b/build-farm/platform-specific-configurations/windows.sh @@ -133,7 +133,11 @@ then elif [ "$JAVA_FEATURE_VERSION" -ge 11 ] then TOOLCHAIN_VERSION="2017" - export CONFIGURE_ARGS_FOR_ANY_PLATFORM="${CONFIGURE_ARGS_FOR_ANY_PLATFORM} --with-freemarker-jar=/cygdrive/c/openjdk/freemarker.jar --with-openssl=/cygdrive/c/openjdk/OpenSSL-1.1.1d-x86_64 --enable-openssl-bundling" + if [ -d /cygdrive/c/openjdk/OpenSSL-1.1.1d-x86_64.VS2017 ]; then + export CONFIGURE_ARGS_FOR_ANY_PLATFORM="${CONFIGURE_ARGS_FOR_ANY_PLATFORM} --with-freemarker-jar=/cygdrive/c/openjdk/freemarker.jar --with-openssl=/cygdrive/c/openjdk/OpenSSL-1.1.1d-x86_64.VS2017 --enable-openssl-bundling" + else + export CONFIGURE_ARGS_FOR_ANY_PLATFORM="${CONFIGURE_ARGS_FOR_ANY_PLATFORM} --with-freemarker-jar=/cygdrive/c/openjdk/freemarker.jar --with-openssl=/cygdrive/c/openjdk/OpenSSL-1.1.1d-x86_64 --enable-openssl-bundling" + fi fi CUDA_VERSION=9.0