ruby-changes:52021
From: nobu <ko1@a...>
Date: Thu, 9 Aug 2018 00:36:34 +0900 (JST)
Subject: [ruby-changes:52021] nobu:r64236 (trunk): needs openssl/opensslv.h
nobu 2018-08-09 00:36:28 +0900 (Thu, 09 Aug 2018) New Revision: 64236 https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=64236 Log: needs openssl/opensslv.h * ext/openssl/extconf.rb: LIBRESSL_VERSION_NUMBER is defined in openssl/opensslv.h. fix up r64101. Modified files: trunk/ext/openssl/extconf.rb Index: ext/openssl/extconf.rb =================================================================== --- ext/openssl/extconf.rb (revision 64235) +++ ext/openssl/extconf.rb (revision 64236) @@ -114,7 +114,7 @@ engines.each { |name| https://github.com/ruby/ruby/blob/trunk/ext/openssl/extconf.rb#L114 OpenSSL.check_func_or_macro("ENGINE_load_#{name}", "openssl/engine.h") } -if ($mswin || $mingw) && have_macro("LIBRESSL_VERSION_NUMBER") +if ($mswin || $mingw) && have_macro("LIBRESSL_VERSION_NUMBER", "openssl/opensslv.h") $defs.push("-DNOCRYPT") end -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/