]> git.ipfire.org Git - thirdparty/openssh-portable.git/commitdiff
Always build OpenSSL shared.
authorDarren Tucker <dtucker@dtucker.net>
Tue, 27 Apr 2021 02:24:10 +0000 (12:24 +1000)
committerDarren Tucker <dtucker@dtucker.net>
Tue, 27 Apr 2021 02:32:46 +0000 (12:32 +1000)
This is the default for current versions but we need it to test against
earlier versions.

.github/setup_ci.sh

index 1918a42362fe5c034d1da5d24471184239262ef7..70a444e4eff4d1690ea234fb49209c1afe762609 100755 (executable)
@@ -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