diff options
author | eban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2002-05-29 08:42:18 +0000 |
---|---|---|
committer | eban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2002-05-29 08:42:18 +0000 |
commit | d24676ba93a984a3676e342add3e22ce8b733303 (patch) | |
tree | 4bcef8ccc5489059b94e3b62b880fdb697b275b3 | |
parent | c740c75ef28ac5ad0c605be7f5ca4cf1a3ce0231 (diff) | |
download | ruby-d24676ba93a984a3676e342add3e22ce8b733303.tar.gz ruby-d24676ba93a984a3676e342add3e22ce8b733303.tar.xz ruby-d24676ba93a984a3676e342add3e22ce8b733303.zip |
* time.c (tmcmp, search_time_t): activate unless HAVE_TIMEGM.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@2503 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | time.c | 2 |
2 files changed, 6 insertions, 0 deletions
@@ -1,3 +1,7 @@ +Wed May 29 17:32:55 2002 WATANABE Hirofumi <eban@ruby-lang.org> + + * time.c (tmcmp, search_time_t): activate unless HAVE_TIMEGM. + Wed May 29 13:45:15 2002 Wakou Aoyama <wakou@ruby-lang.org> * lib/cgi.rb: not use const if GET, HEAD. check multipart form head. @@ -323,6 +323,7 @@ static VALUE time_gmtime _((VALUE)); static VALUE time_localtime _((VALUE)); static VALUE time_get_tm _((VALUE, int)); +#if !defined HAVE_TIMEGM static int tmcmp(a, b) struct tm *a; @@ -573,6 +574,7 @@ search_time_t(tptr, utc_p) rb_raise(rb_eArgError, "gmtime/localtime error"); return 0; /* not reached */ } +#endif static time_t make_time_t(tptr, utc_p) |