mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
openssl: fix compile on VC
* ext/openssl/openssl_missing.h: Include ruby/config.h. r55285 added some inline functions but VC does not recognize 'inline' keyword. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55291 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
2e71c75278
commit
9d2196fd95
2 changed files with 7 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
|||
Mon Jun 6 10:39:56 2016 Kazuki Yamaguchi <k@rhe.jp>
|
||||
|
||||
* ext/openssl/openssl_missing.h: Include ruby/config.h. r55285 added
|
||||
some inline functions but VC does not recognize 'inline' keyword.
|
||||
|
||||
Mon Jun 6 09:25:34 2016 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* thread.c (thread_start_func_2): report raised exception if
|
||||
|
|
|
@ -10,6 +10,8 @@
|
|||
#if !defined(_OSSL_OPENSSL_MISSING_H_)
|
||||
#define _OSSL_OPENSSL_MISSING_H_
|
||||
|
||||
#include "ruby/config.h"
|
||||
|
||||
/* added in 0.9.8X */
|
||||
#if !defined(HAVE_EVP_CIPHER_CTX_NEW)
|
||||
EVP_CIPHER_CTX *EVP_CIPHER_CTX_new(void);
|
||||
|
|
Loading…
Add table
Reference in a new issue