diff options
| author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-12-25 13:55:45 +0000 |
|---|---|---|
| committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-12-25 13:55:45 +0000 |
| commit | e6e2b8804f2ebfa3e7b51f6bfbda391c0222f085 (patch) | |
| tree | dc8baeeac90985ece0aa2afa16312ee2b17f4e0a | |
| parent | fbe80222deea67deca7f9ad4b379bfe358f33a9a (diff) | |
| download | ruby-e6e2b8804f2ebfa3e7b51f6bfbda391c0222f085.tar.gz ruby-e6e2b8804f2ebfa3e7b51f6bfbda391c0222f085.tar.xz ruby-e6e2b8804f2ebfa3e7b51f6bfbda391c0222f085.zip | |
* configure.in (TIMEZONE_VOID): typo.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@14704 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | configure.in | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,3 +1,7 @@ +Tue Dec 25 22:55:42 2007 Nobuyoshi Nakada <nobu@ruby-lang.org> + + * configure.in (TIMEZONE_VOID): typo. + Tue Dec 25 22:45:10 2007 Koichi Sasada <ko1@atdot.net> * insns2vm.rb: add encoding option to shbang. diff --git a/configure.in b/configure.in index e25803561..f0cdc2ee5 100644 --- a/configure.in +++ b/configure.in @@ -694,7 +694,7 @@ RUBY_CHECK_VARTYPE(timezone, [#include <time.h>], [long int]) RUBY_CHECK_VARTYPE(altzone, [#include <time.h>], [long int]) if test "$rb_cv_var_timezone" = no; then AC_CHECK_FUNCS(timezone) - if test "$ ac_cv_func_timezone" = yes; then + if test "$ac_cv_func_timezone" = yes; then AC_CACHE_CHECK([whether timezone requires zero arguments], rb_cv_func_timezone_void, [AC_TRY_COMPILE([#include <time.h>], [(void)timezone(0, 0);], |
