mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00

* win32/file.c (code_page_i): handle realloc failure. reported by Denis Denisov <denji0k AT gmail.com>. * win32/stub.c (stub_sysinit): ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@49023 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
76 lines
2.5 KiB
Text
76 lines
2.5 KiB
Text
Fri Dec 26 14:48:10 2014 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
|
|
|
* win32/file.c (code_page_i): handle realloc failure.
|
|
reported by Denis Denisov <denji0k AT gmail.com>.
|
|
|
|
* win32/stub.c (stub_sysinit): ditto.
|
|
|
|
* fix printf format conversion specifiers.
|
|
reported by Denis Denisov <denji0k AT gmail.com>.
|
|
|
|
Fri Dec 26 01:41:40 2014 NAKAMURA Usaku <usa@ruby-lang.org>
|
|
|
|
* tool/rbinstall.rb: skip installing bundle gems if zlib is unavailable.
|
|
[Bug #10647] [ruby-dev:48787]
|
|
|
|
Fri Dec 26 01:24:42 2014 NAKAMURA Usaku <usa@ruby-lang.org>
|
|
|
|
* tool/downloader.rb: support old versions of ruby.
|
|
|
|
* tool/downloader.rb: now can download gems by http if openssl is not
|
|
available (this may be danger!)
|
|
|
|
Fri Dec 26 00:13:48 2014 NAKAMURA Usaku <usa@ruby-lang.org>
|
|
|
|
* test/ruby/test_extlibs.rb: check existence of extension libraries
|
|
which not depend on outer libraries. (experimental)
|
|
|
|
Thu Dec 25 21:58:15 2014 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
|
|
|
* ext/fiddle/extconf.rb: make PIC objects if it will be linked as
|
|
a shared object eventually. [ruby-core:67128]
|
|
|
|
Thu Dec 25 19:01:13 2014 NAKAMURA Usaku <usa@ruby-lang.org>
|
|
|
|
* ext/fiddle/win32/libffi-3.2.1-mswin.patch: support mswin32.
|
|
|
|
Thu Dec 25 17:30:40 2014 Naohisa Goto <ngotogenome@gmail.com>
|
|
|
|
* gc.c (wmap_final_func): fix memory size shortage when realloc wmap.
|
|
Fix SEGV during finilize of WeakRef on Solaris (though the SEGV
|
|
could occur on all OS/platforms). [ruby-dev:48779] [Bug #10646]
|
|
|
|
Thu Dec 25 17:27:06 2014 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
|
|
|
* configure.in (NET_LUID): include winsock2.h instead of windows.h.
|
|
patch by Jon Forums in [ruby-core:67125]. [Bug #10640]
|
|
|
|
Thu Dec 25 16:14:10 2014 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
|
|
|
* ext/io/console/console.c (console_dev): send the given arguments
|
|
to the opened console. as a special case, do nothing if :close
|
|
is given.
|
|
|
|
* test/lib/leakchecker.rb (LeakChecker#check_fd_leak): close if
|
|
console.
|
|
|
|
For the changes before 2.2.0, see doc/ChangeLog-2.2.0
|
|
For the changes before 2.1.0, see doc/ChangeLog-2.1.0
|
|
For the changes before 2.0.0, see doc/ChangeLog-2.0.0
|
|
For the changes before 1.9.3, see doc/ChangeLog-1.9.3
|
|
For the changes before 1.8.0, see doc/ChangeLog-1.8.0
|
|
|
|
Local variables:
|
|
coding: us-ascii
|
|
add-log-time-format: (lambda ()
|
|
(let* ((time (current-time))
|
|
(system-time-locale "C")
|
|
(diff (+ (cadr time) 32400))
|
|
(lo (% diff 65536))
|
|
(hi (+ (car time) (/ diff 65536))))
|
|
(format-time-string "%a %b %e %H:%M:%S %Y" (list hi lo) t)))
|
|
indent-tabs-mode: t
|
|
tab-width: 8
|
|
change-log-indent-text: 2
|
|
end:
|
|
vim: tabstop=8 shiftwidth=2
|