diff options
author | akr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-11-25 09:09:26 +0000 |
---|---|---|
committer | akr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-11-25 09:09:26 +0000 |
commit | 6ad14ca63af8b18256e48af3e1215252695710a0 (patch) | |
tree | 729e1f01057280de89e07d5e2d7bd8d6b8c66124 | |
parent | 5cb43daf2a47a32d9c8459c692d6def0c24b4906 (diff) | |
download | ruby-6ad14ca63af8b18256e48af3e1215252695710a0.tar.gz ruby-6ad14ca63af8b18256e48af3e1215252695710a0.tar.xz ruby-6ad14ca63af8b18256e48af3e1215252695710a0.zip |
* configure.in: AC_CHECK_SIZEOF(rlim_t) to include stdio.h to fix
problem with autoconf 2.52 or earlier.
revert AC_PREREQ to 2.50.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@7373 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | configure.in | 3 |
2 files changed, 8 insertions, 1 deletions
@@ -1,3 +1,9 @@ +Thu Nov 25 18:06:37 2004 Tanaka Akira <akr@m17n.org> + + * configure.in: AC_CHECK_SIZEOF(rlim_t) to include stdio.h to fix + problem with autoconf 2.52 or earlier. + revert AC_PREREQ to 2.50. + Thu Nov 25 07:59:41 2004 Yukihiro Matsumoto <matz@ruby-lang.org> * configure.in: AC_PREREQ(2.53) [ruby-core:03800] diff --git a/configure.in b/configure.in index 57ab6bf4d..ac76c4bcf 100644 --- a/configure.in +++ b/configure.in @@ -1,7 +1,7 @@ dnl Process this file with autoconf to produce a configure script. AC_INIT() -AC_PREREQ(2.53) +AC_PREREQ(2.50) AC_DEFUN(RUBY_MINGW32, [case "$host_os" in @@ -410,6 +410,7 @@ AC_CHECK_SIZEOF(rlim_t, 0, [ #ifdef HAVE_UNISTD_H # include <unistd.h> #endif + #include <stdio.h> ]) dnl Checks for typedefs, structures, and compiler characteristics. |