[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:
Benoit Daloze 2023-07-21 16:42:42 +02:00 коммит произвёл Hiroshi SHIBATA
Родитель dd1af4b22d
Коммит 14d16bdb1a
1 изменённых файлов: 8 добавлений и 1 удалений

Просмотреть файл

@ -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"