1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* ext/digest/sha2/sha2init.c: test OpenSSL more strictly.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@26730 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
akr 2010-02-22 12:36:11 +00:00
parent 29860b0bbb
commit 508ca62a6c
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
Mon Feb 22 21:35:33 2010 Tanaka Akira <akr@fsij.org>
* ext/digest/sha2/sha2init.c: test OpenSSL more strictly.
Mon Feb 22 11:52:30 2010 Nobuyoshi Nakada <nobu@ruby-lang.org>
* lib/rubygems: update to 1.3.6.

View file

@ -2,7 +2,7 @@
/* $Id$ */
#include "digest.h"
#if defined(HAVE_OPENSSL_SHA_H)
#if defined(HAVE_OPENSSL_SHA_H) && defined(HAVE_SHA256_TRANSFORM) && defined(HAVE_SHA512_TRANSFORM)
#include "sha2ossl.h"
#else
#include "sha2.h"