summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-11-25 09:09:26 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-11-25 09:09:26 +0000
commitdb306518e4d77dc50c503c0908c4e9ca2e2afb18 (patch)
tree729e1f01057280de89e07d5e2d7bd8d6b8c66124
parentf7884c6beb479950cb8863a556df38ec29806b9f (diff)
* 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: svn+ssh://ci.ruby-lang.org/ruby/trunk@7373 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog6
-rw-r--r--configure.in3
2 files changed, 8 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 50af290abe..f868531fc7 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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 57ab6bf4d9..ac76c4bcf3 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.