mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* 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
This commit is contained in:
parent
f7884c6beb
commit
db306518e4
2 changed files with 8 additions and 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]
|
||||
|
|
|
@ -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.
|
||||
|
|
Loading…
Reference in a new issue