diff options
| author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-03-13 01:16:38 +0000 |
|---|---|---|
| committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-03-13 01:16:38 +0000 |
| commit | 63996a78e21162a3692f60651aeb75d1030e546a (patch) | |
| tree | 24f9a3b48f9930fbd66d98e894a8f85ee22adbcf | |
| parent | d61cd2c2580a776cd8b6fd5ed463df7db30815e9 (diff) | |
| download | ruby-63996a78e21162a3692f60651aeb75d1030e546a.tar.gz ruby-63996a78e21162a3692f60651aeb75d1030e546a.tar.xz ruby-63996a78e21162a3692f60651aeb75d1030e546a.zip | |
* configure.in (struct stat.st_size): may be huge.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@22921 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | configure.in | 1 |
2 files changed, 5 insertions, 0 deletions
@@ -1,3 +1,7 @@ +Fri Mar 13 10:16:36 2009 Nobuyoshi Nakada <nobu@ruby-lang.org> + + * configure.in (struct stat.st_size): may be huge. + Fri Mar 13 09:30:12 2009 Nobuyoshi Nakada <nobu@ruby-lang.org> * bignum.c (bigfixize): zero length Bignum is 0. diff --git a/configure.in b/configure.in index 7b8151138..9a66e7364 100644 --- a/configure.in +++ b/configure.in @@ -936,6 +936,7 @@ RUBY_CHECK_SIZEOF(ptrdiff_t, size_t) AC_STRUCT_ST_BLKSIZE AC_STRUCT_ST_BLOCKS AC_STRUCT_ST_RDEV +RUBY_CHECK_HUGE([struct stat.st_size]) if test "$ac_cv_member_struct_stat_st_blocks" = yes; then RUBY_CHECK_HUGE(struct stat.st_blocks) fi |
