Skip to content

Commit

Permalink
Always respect the openssl prefix chosen by truffle/openssl-prefix on…
Browse files Browse the repository at this point in the history
… TruffleRuby

* See #650 (comment)
  • Loading branch information
eregon committed Jul 21, 2023
1 parent e379cc0 commit ca738e7
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion ext/openssl/extconf.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit ca738e7

Please sign in to comment.