Commit a5c0d7d6 by SHIBATA Hiroshi Committed by GitHub

Merge pull request #1095 from osyoyu/master

Ignore LibreSSL bundled with macOS 10.13
parents 2de7a29d 84a9a048
......@@ -959,7 +959,10 @@ use_homebrew_readline() {
has_broken_mac_openssl() {
is_mac &&
[[ "$(/usr/bin/openssl version 2>/dev/null || true)" = "OpenSSL 0.9.8"?* ]] &&
[[
"$(/usr/bin/openssl version 2>/dev/null || true)" = "OpenSSL 0.9.8"?* ||
"$(/usr/bin/openssl version 2>/dev/null || true)" = "LibreSSL 2.2.7"
]] &&
[[ "$RUBY_CONFIGURE_OPTS" != *--with-openssl-dir=* ]] &&
! use_homebrew_openssl
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment