From b9bfa39d146db783083940e943e2224dfd81518b Mon Sep 17 00:00:00 2001 From: yugui Date: Thu, 25 Dec 2008 09:51:10 +0000 Subject: merges r20909 and r20910 from trunk into ruby_1_9_1. * configure.in (mingw): no longer uses snprintf and vsnprintf of msvcrt. * win32/win32.c (rb_w32_vsnprintf, rb_w32_snprintf): removed. * win32/Makefile.sub (config.h): vsnprintf exists in VC7 or later. * win32/mkexports.rb (Exports#initialize): aliases rb_w32_vsnprintf and rb_w32_snprintf for binary compatibility. * sprintf.c (rb_str_format): uses snprintf instead of sprintf. * numeric.c (flo_to_s, rb_num2long, rb_num2ll): ditto. git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_9_1@20998 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'ChangeLog') diff --git a/ChangeLog b/ChangeLog index 8412ca24f..fc20ff9d6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,19 @@ +Mon Dec 22 12:05:14 2008 Nobuyoshi Nakada + + * configure.in (mingw): no longer uses snprintf and vsnprintf of + msvcrt. [Bug#6] + + * win32/win32.c (rb_w32_vsnprintf, rb_w32_snprintf): removed. + + * win32/Makefile.sub (config.h): vsnprintf exists in VC7 or later. + + * win32/mkexports.rb (Exports#initialize): aliases + rb_w32_vsnprintf and rb_w32_snprintf for binary compatibility. + + * sprintf.c (rb_str_format): uses snprintf instead of sprintf. + + * numeric.c (flo_to_s, rb_num2long, rb_num2ll): ditto. + Sat Dec 20 15:34:36 2008 Yukihiro Matsumoto * lib/rake.rb (Rake::FileList#egrep): change open mode to "rb", -- cgit