From 38dbbf33b03256df3c290a89254e898ee3ffd3dc Mon Sep 17 00:00:00 2001 From: nobu Date: Sun, 5 Oct 2014 01:38:52 +0000 Subject: rmd160/extconf.rb: fix function name * ext/digest/rmd160/extconf.rb: fix transform function name to check. [ruby-core:65091] [Bug #10252] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@47801 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/digest/rmd160/extconf.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ext/digest') diff --git a/ext/digest/rmd160/extconf.rb b/ext/digest/rmd160/extconf.rb index d487d6da80..60131aa554 100644 --- a/ext/digest/rmd160/extconf.rb +++ b/ext/digest/rmd160/extconf.rb @@ -14,7 +14,7 @@ pkg_config("openssl") 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}" -- cgit v1.2.3