1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/ext
rhe e478bb7d79 openssl: support OpenSSL 1.1.0's new multi-threading API
* ext/openssl/extconf.rb: Check absence of CRYPTO_lock() to see if the
  OpenSSL has the new threading API. In OpenSSL <= 1.0.2, an application
  had to set locking callbacks to use OpenSSL in a multi-threaded
  environment. OpenSSL 1.1.0 now finds pthreads or Windows threads so we
  don't need to do something special.
  [ruby-core:75225] [Feature #12324]

  Also check existence of *_up_ref(). Some structures in OpenSSL have
  a reference counter. We used to increment it with CRYPTO_add() which
  is a part of the old API.

* ext/openssl/openssl_missing.h: Implement *_up_ref() if missing.

* ext/openssl/ossl.c: Don't set locking callbacks if unneeded.

* ext/openssl/ossl_pkey.c, ext/openssl/ossl_ssl.c,
  ext/openssl/ossl_x509cert.c, ext/openssl/ossl_x509crl.c,
  ext/openssl/ossl_x509store.c: Use *_up_ref() instead of CRYPTO_add().

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55283 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2016-06-05 12:46:05 +00:00
..
-test- string.c: return reallocated pointer 2016-05-30 07:20:28 +00:00
bigdecimal missing.h: isfinite 2016-05-23 12:33:39 +00:00
cgi/escape cgi/util.rb: remove CGI::Util#_unescape 2016-04-20 08:33:33 +00:00
continuation
coverage Update dependencies. 2016-04-11 11:50:00 +00:00
date fix typos [ci skip] 2016-05-20 13:21:55 +00:00
dbm remove unnecessary volatiles 2016-05-23 04:31:55 +00:00
digest Update dependencies. 2016-04-11 11:50:00 +00:00
etc etc.c: retry with allocated string buffer 2016-06-02 12:21:42 +00:00
fcntl
fiber
fiddle fiddle/import.rb: suppress warnings 2016-04-11 04:28:16 +00:00
gdbm
io io/console: bump up 2016-04-15 06:15:54 +00:00
json [Feature #12005] Unify Fixnum and Bignum into Integer 2016-05-17 06:53:48 +00:00
mathn
nkf Update dependencies. 2016-04-11 11:50:00 +00:00
objspace objspace_dump.c: fix format 2016-05-08 09:59:36 +00:00
openssl openssl: support OpenSSL 1.1.0's new multi-threading API 2016-06-05 12:46:05 +00:00
pathname
psych stdlib: avoid extra calls to eliminate "\n" from Base64 2016-01-10 00:35:43 +00:00
pty pty.c: dry up 2016-04-30 01:12:52 +00:00
racc/cparse
rbconfig/sizeof rbconfig/sizeof: calculate at compilation time 2016-04-25 05:39:12 +00:00
readline Update dependencies. 2016-04-11 11:50:00 +00:00
ripper ripper: fix ripper.E 2016-04-25 07:56:06 +00:00
sdbm remove unnecessary volatiles 2016-05-23 04:31:55 +00:00
socket * ext/socket/raddrinfo.c (host_str, port_str): Use StringValueCStr 2016-05-30 15:33:06 +00:00
stringio stringio.c: share strings 2016-05-30 05:54:59 +00:00
strscan Update dependencies. 2016-04-11 11:50:00 +00:00
syslog Update dependencies. 2016-04-11 11:50:00 +00:00
tk tcltklib.c: elimitate dead code 2016-05-23 04:40:43 +00:00
win32 registry.rb: fix API names 2016-04-10 11:54:17 +00:00
win32ole win32ole.c: share the content 2016-05-20 12:17:14 +00:00
zlib * ext/zlib/zlib.c: remove hacky macro introduced at r30437. 2016-05-21 17:47:52 +00:00
.document
extmk.rb extmk.rb: fix skipping messages 2016-05-16 00:16:13 +00:00
Setup ext/thread: remove 2016-04-30 02:56:17 +00:00
Setup.atheos
Setup.nacl
Setup.nt