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 | |
| 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')
| -rw-r--r-- | ext/digest/md5/md5ossl.h | 1 | ||||
| -rw-r--r-- | ext/digest/rmd160/rmd160ossl.h | 1 | ||||
| -rw-r--r-- | ext/digest/sha1/sha1ossl.h | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/ext/digest/md5/md5ossl.h b/ext/digest/md5/md5ossl.h index dda7c743e..610f58db0 100644 --- a/ext/digest/md5/md5ossl.h +++ b/ext/digest/md5/md5ossl.h @@ -3,6 +3,7 @@ #ifndef MD5OSSL_H_INCLUDED #define MD5OSSL_H_INCLUDED +#include <stddef.h> #include <openssl/md5.h> void MD5_End(MD5_CTX *pctx, unsigned char *hexdigest); diff --git a/ext/digest/rmd160/rmd160ossl.h b/ext/digest/rmd160/rmd160ossl.h index 824a1bf32..e8928d164 100644 --- a/ext/digest/rmd160/rmd160ossl.h +++ b/ext/digest/rmd160/rmd160ossl.h @@ -3,6 +3,7 @@ #ifndef RMD160OSSL_H_INCLUDED #define RMD160OSSL_H_INCLUDED +#include <stddef.h> #include <openssl/ripemd.h> #define RMD160_CTX RIPEMD160_CTX 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 |
