From 9c8a38e7aae3d71903c3b4364d8190bbdfee1532 Mon Sep 17 00:00:00 2001 From: akr Date: Wed, 2 Jan 2008 06:24:27 +0000 Subject: * util.c (ruby_strtoul): locale independent strtoul is implemented to avoid "i".to_i(36) cause 0 under tr_TR locale. This is newly implemented, not a copy of missing/strtoul.c. * include/ruby/ruby.h (ruby_strtoul): declared. (STRTOUL): defined to use ruby_strtoul. * bignum.c, pack.c, ext/socket/socket.c: use STRTOUL. * configure.in (strtoul): don't check. * missing/strtoul.c: removed. * include/ruby/missing.h (strtoul): removed. * common.mk (strtoul.o): removed. * LEGAL (missing/strtoul.c): removed. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@14850 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) (limited to 'ChangeLog') diff --git a/ChangeLog b/ChangeLog index 1393b5fdb..22fb6a3bf 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,24 @@ +Wed Jan 2 15:23:15 2008 Tanaka Akira + + * util.c (ruby_strtoul): locale independent strtoul is implemented to + avoid "i".to_i(36) cause 0 under tr_TR locale. + This is newly implemented, not a copy of missing/strtoul.c. + + * include/ruby/ruby.h (ruby_strtoul): declared. + (STRTOUL): defined to use ruby_strtoul. + + * bignum.c, pack.c, ext/socket/socket.c: use STRTOUL. + + * configure.in (strtoul): don't check. + + * missing/strtoul.c: removed. + + * include/ruby/missing.h (strtoul): removed. + + * common.mk (strtoul.o): removed. + + * LEGAL (missing/strtoul.c): removed. + Wed Jan 2 14:41:08 2008 Tanaka Akira * common.mk (strcasecmp.o): removed. -- cgit