зеркало из https://github.com/github/ruby.git
[ruby/openssl] Always respect the openssl prefix chosen by truffle/openssl-prefix on TruffleRuby
* See https://github.com/ruby/openssl/issues/650#issuecomment-1645699608 https://github.com/ruby/openssl/commit/ca738e7e13
This commit is contained in:
Родитель
dd1af4b22d
Коммит
14d16bdb1a
|
@ -13,7 +13,14 @@
|
|||
|
||||
require "mkmf"
|
||||
|
||||
dir_config_given = dir_config("openssl").any?
|
||||
if defined?(::TruffleRuby)
|
||||
# Always respect the openssl prefix chosen by truffle/openssl-prefix
|
||||
require 'truffle/openssl-prefix'
|
||||
dir_config_given = dir_config("openssl", ENV["OPENSSL_PREFIX"]).any?
|
||||
else
|
||||
dir_config_given = dir_config("openssl").any?
|
||||
end
|
||||
|
||||
dir_config("kerberos")
|
||||
|
||||
Logging::message "=== OpenSSL for Ruby configurator ===\n"
|
||||
|
|
Загрузка…
Ссылка в новой задаче