diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2010-02-24 00:31:37 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2010-02-24 00:31:37 +0000 |
commit | 5fe5eb264d79e4ffa7c77b1a09d1de69469fffb9 (patch) | |
tree | c49e518f0eeae93eaa840396571dc031588d40fb /ext/digest/sha2/sha2init.c | |
parent | fdb57d043d96821a79d52750a761b43e8676cc61 (diff) |
* ext/digest/extconf.rb: use OpenSSL only when all transform
functions are available.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@26745 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/digest/sha2/sha2init.c')
-rw-r--r-- | ext/digest/sha2/sha2init.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/digest/sha2/sha2init.c b/ext/digest/sha2/sha2init.c index 25ef6d2546..13df4bcb78 100644 --- a/ext/digest/sha2/sha2init.c +++ b/ext/digest/sha2/sha2init.c @@ -2,7 +2,7 @@ /* $Id$ */ #include "digest.h" -#if defined(HAVE_OPENSSL_SHA_H) && defined(HAVE_SHA256_TRANSFORM) && defined(HAVE_SHA512_TRANSFORM) +#if defined(SHA2_USE_OPENSSL) #include "sha2ossl.h" #else #include "sha2.h" |