[openssh-commits] [openssh] 08/08: Build without OpenSSL on Mac OS.

git+noreply at mindrot.org git+noreply at mindrot.org
Wed Sep 29 18:45:23 AEST 2021


This is an automated email from the git hooks/post-receive script.

dtucker pushed a commit to branch master
in repository openssh.

commit 55c8bdf6e9afb0f9fa8e4f10c25c7f0081b48fd0
Author: Darren Tucker <dtucker at dtucker.net>
Date:   Wed Sep 29 18:42:47 2021 +1000

    Build without OpenSSL on Mac OS.
    
    Modern versions don't ship enough libcrypto to build against.
---
 .github/configs | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/.github/configs b/.github/configs
index e86fef53..b0ce19db 100755
--- a/.github/configs
+++ b/.github/configs
@@ -154,6 +154,14 @@ case "${TARGET_HOST}" in
 	;;
 esac
 
+# Unless specified otherwise, build without OpenSSL on Mac OS since
+# modern versions don't ship with libcrypto.
+case $(./config.guess) in
+*-darwin*)
+	LIBCRYPTOFLAGS="--without-openssl"
+	;;
+esac
+
 # If we have a local openssl/libressl, use that.
 if [ -z "${LIBCRYPTOFLAGS}" ]; then
 	# last-match

-- 
To stop receiving notification emails like this one, please contact
djm at mindrot.org.


More information about the openssh-commits mailing list