ruby-changes:35719
From: nobu <ko1@a...>
Date: Sun, 5 Oct 2014 10:39:04 +0900 (JST)
Subject: [ruby-changes:35719] nobu:r47801 (trunk): rmd160/extconf.rb: fix function name
nobu 2014-10-05 10:38:52 +0900 (Sun, 05 Oct 2014) New Revision: 47801 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=47801 Log: rmd160/extconf.rb: fix function name * ext/digest/rmd160/extconf.rb: fix transform function name to check. [ruby-core:65091] [Bug #10252] Modified files: trunk/ChangeLog trunk/ext/digest/rmd160/extconf.rb Index: ChangeLog =================================================================== --- ChangeLog (revision 47800) +++ ChangeLog (revision 47801) @@ -1,3 +1,8 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1 +Sun Oct 5 10:39:11 2014 Luiz Angelo Daros de Luca <luizluca@g...> + + * ext/digest/rmd160/extconf.rb: fix transform function name to + check. [ruby-core:65091] [Bug #10252] + Sun Oct 5 05:46:00 2014 Eric Wong <e@8...> * ext/zlib/zlib.c (zstream_mark, zstream_free): update signature Index: ext/digest/rmd160/extconf.rb =================================================================== --- ext/digest/rmd160/extconf.rb (revision 47800) +++ ext/digest/rmd160/extconf.rb (revision 47801) @@ -14,7 +14,7 @@ pkg_config("openssl") https://github.com/ruby/ruby/blob/trunk/ext/digest/rmd160/extconf.rb#L14 require File.expand_path('../../../openssl/deprecation', __FILE__) if !with_config("bundled-rmd160") && - have_library("crypto") && OpenSSL.check_func("RMD160_Transform", "openssl/ripemd.h") + have_library("crypto") && OpenSSL.check_func("RIPEMD160_Transform", "openssl/ripemd.h") $objs << "rmd160ossl.#{$OBJEXT}" else $objs << "rmd160.#{$OBJEXT}" -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/