diff options
| author | gotoyuzo <gotoyuzo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-08-30 10:43:36 +0000 |
|---|---|---|
| committer | gotoyuzo <gotoyuzo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-08-30 10:43:36 +0000 |
| commit | 77a45dc9ed7644c8d997310f3ab32009beeb3f51 (patch) | |
| tree | 63f9d7ebe6ad2b2352e6a9529305a0a9e143b65b /ext/digest/sha1 | |
| parent | 01d8c2c472b0a5d9ebefb31011e6980b517756b8 (diff) | |
| download | ruby-77a45dc9ed7644c8d997310f3ab32009beeb3f51.tar.gz ruby-77a45dc9ed7644c8d997310f3ab32009beeb3f51.tar.xz ruby-77a45dc9ed7644c8d997310f3ab32009beeb3f51.zip | |
* ext/digest/md5/md5ossl.h, ext/digest/rmd160/rmd160ossl.h,
ext/digest/sha1/sha1ossl.h: include <stddef.h> to avoid
error in compilation with OpenSSL-0.9.8. [ruby-list:41068]
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@9049 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/digest/sha1')
| -rw-r--r-- | ext/digest/sha1/sha1ossl.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/digest/sha1/sha1ossl.h b/ext/digest/sha1/sha1ossl.h index e8d7e74ba..c271cc47c 100644 --- a/ext/digest/sha1/sha1ossl.h +++ b/ext/digest/sha1/sha1ossl.h @@ -3,6 +3,7 @@ #ifndef SHA1OSSL_H_INCLUDED #define SHA1OSSL_H_INCLUDED +#include <stddef.h> #include <openssl/sha.h> #define SHA1_CTX SHA_CTX |
