diff options
| author | gotoyuzo <gotoyuzo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-06-19 16:29:17 +0000 |
|---|---|---|
| committer | gotoyuzo <gotoyuzo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-06-19 16:29:17 +0000 |
| commit | 43a88dcbe33e789d279db76569959141a4651dd3 (patch) | |
| tree | 9c1263945ed2d9a056cea635b65ed2dce0a1b675 /ext/openssl/openssl_missing.c | |
| parent | d8ce4aa37b207b0607b597ddfc62fe1007cd8c50 (diff) | |
| download | ruby-43a88dcbe33e789d279db76569959141a4651dd3.tar.gz ruby-43a88dcbe33e789d279db76569959141a4651dd3.tar.xz ruby-43a88dcbe33e789d279db76569959141a4651dd3.zip | |
* ext/openssl/openssl_missing.c, ext/openssl/ossl.h,
ext/openssl/ossl_asn1.c, ext/openssl/ossl_bio.c,
ext/openssl/ossl_pkcs12.h, ext/openssl/ossl_x509req.c: avoid
compiler warnings. suggested by Mical Rokos.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8645 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/openssl/openssl_missing.c')
| -rw-r--r-- | ext/openssl/openssl_missing.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ext/openssl/openssl_missing.c b/ext/openssl/openssl_missing.c index dfa5f9001..dd4e942cb 100644 --- a/ext/openssl/openssl_missing.c +++ b/ext/openssl/openssl_missing.c @@ -106,6 +106,9 @@ HMAC_CTX_cleanup(HMAC_CTX *ctx) #endif #if !defined(HAVE_EVP_CIPHER_CTX_COPY) +#if defined(HAVE_OPENSSL_ENGINE_H) && defined(HAVE_ST_ENGINE) +#include <openssl/engine.h> +#endif /* * this function does not exist in OpenSSL yet... or ever?. * a future version may break this function. |
