diff options
| author | akr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-01-02 06:24:27 +0000 |
|---|---|---|
| committer | akr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-01-02 06:24:27 +0000 |
| commit | 9c8a38e7aae3d71903c3b4364d8190bbdfee1532 (patch) | |
| tree | 9f6bc245a678bd5c4d451053ab221395692c4d30 /configure.in | |
| parent | 1e6335524f41e99f746b8bd9fbe44cd011324784 (diff) | |
| download | ruby-9c8a38e7aae3d71903c3b4364d8190bbdfee1532.tar.gz ruby-9c8a38e7aae3d71903c3b4364d8190bbdfee1532.tar.xz ruby-9c8a38e7aae3d71903c3b4364d8190bbdfee1532.zip | |
* 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
Diffstat (limited to 'configure.in')
| -rw-r--r-- | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in index a3018d666..1ab21a735 100644 --- a/configure.in +++ b/configure.in @@ -633,7 +633,7 @@ powerpc-darwin*) esac AC_FUNC_MEMCMP AC_REPLACE_FUNCS(dup2 memmove strerror strftime\ - strchr strstr strtoul crypt flock vsnprintf\ + strchr strstr crypt flock vsnprintf\ isnan finite isinf hypot acosh erf strlcpy strlcat) AC_CHECK_FUNCS(fmod killpg wait4 waitpid fork spawnv syscall chroot fsync getcwd eaccess\ truncate chsize times utimes utimensat fcntl lockf lstat\ |
