From 9f79e80dc40965c2e73164531250b83b176c1eea Mon Sep 17 00:00:00 2001 From: Darren Tucker Date: Tue, 27 Apr 2021 12:24:10 +1000 Subject: [PATCH] Always build OpenSSL shared. This is the default for current versions but we need it to test against earlier versions. --- .github/setup_ci.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/setup_ci.sh b/.github/setup_ci.sh index 1918a4236..70a444e4e 100755 --- a/.github/setup_ci.sh +++ b/.github/setup_ci.sh @@ -99,7 +99,7 @@ if [ ! -z "${INSTALL_OPENSSL}" ]; then git clone https://github.com/openssl/openssl.git && cd ${HOME}/openssl && git checkout ${INSTALL_OPENSSL} && - ./config no-threads ${SSLCONFOPTS} \ + ./config no-threads shared ${SSLCONFOPTS} \ --prefix=/opt/openssl && make && sudo make install_sw) fi