From bfb334eefa6fdebcf95af0b44f27117b754d93c7 Mon Sep 17 00:00:00 2001 From: akr Date: Thu, 9 May 2013 12:12:17 +0000 Subject: * file.c, ext/etc/etc.c, ext/socket/unixsocket.c, ext/openssl/ossl.h, ext/openssl/openssl_missing.c: Use HAVE_AGGREGATE_MEMBER instead of HAVE_ST_MEMBER. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@40625 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/openssl/openssl_missing.c | 4 ++-- ext/openssl/ossl.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'ext/openssl') diff --git a/ext/openssl/openssl_missing.c b/ext/openssl/openssl_missing.c index f88dd403be..b5efaaf15d 100644 --- a/ext/openssl/openssl_missing.c +++ b/ext/openssl/openssl_missing.c @@ -10,7 +10,7 @@ */ #include RUBY_EXTCONF_H -#if defined(HAVE_OPENSSL_ENGINE_H) && defined(HAVE_ST_ENGINE) +#if defined(HAVE_OPENSSL_ENGINE_H) && defined(HAVE_EVP_CIPHER_CTX_ENGINE) # include #endif #include @@ -122,7 +122,7 @@ EVP_CIPHER_CTX_copy(EVP_CIPHER_CTX *out, EVP_CIPHER_CTX *in) { memcpy(out, in, sizeof(EVP_CIPHER_CTX)); -#if defined(HAVE_ENGINE_ADD) && defined(HAVE_ST_ENGINE) +#if defined(HAVE_ENGINE_ADD) && defined(HAVE_EVP_CIPHER_CTX_ENGINE) if (in->engine) ENGINE_add(out->engine); if (in->cipher_data) { out->cipher_data = OPENSSL_malloc(in->cipher->ctx_size); diff --git a/ext/openssl/ossl.h b/ext/openssl/ossl.h index 88e4506fa8..96d0ade11e 100644 --- a/ext/openssl/ossl.h +++ b/ext/openssl/ossl.h @@ -66,7 +66,7 @@ extern "C" { #include #undef X509_NAME #undef PKCS7_SIGNER_INFO -#if defined(HAVE_OPENSSL_ENGINE_H) && defined(HAVE_ST_ENGINE) +#if defined(HAVE_OPENSSL_ENGINE_H) && defined(HAVE_EVP_CIPHER_CTX_ENGINE) # define OSSL_ENGINE_ENABLED # include #endif -- cgit v1.2.3