From 360b98355e08c455d627c31c5f63bdda75fe8de2 Mon Sep 17 00:00:00 2001 From: naruse Date: Thu, 26 Nov 2015 08:31:12 +0000 Subject: fixup! r52695 OpenSSL's SHA1 struct name is SHA_CTX (which is also used for SHA-0), but function name is SHA1_Transform. http://openssl.org/docs/man0.9.8/crypto/SHA1.html also note that LibreSSL 2.3 remove the SHA-0 support but still support SHA-1. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52755 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/digest/sha1/extconf.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ext/digest/sha1/extconf.rb') diff --git a/ext/digest/sha1/extconf.rb b/ext/digest/sha1/extconf.rb index b5c111f36e..03cbf66b5e 100644 --- a/ext/digest/sha1/extconf.rb +++ b/ext/digest/sha1/extconf.rb @@ -9,7 +9,7 @@ $defs << "-DHAVE_CONFIG_H" $objs = [ "sha1init.#{$OBJEXT}" ] -digest_conf("sha1", "sha", "SHA") +digest_conf("sha1", "sha", nil, %w[SHA]) have_header("sys/cdefs.h") -- cgit v1.2.3