diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-07-25 16:04:35 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-07-25 16:04:35 +0000 |
commit | 8dc2f3c463985ad3398d08f1351df8ed13122f73 (patch) | |
tree | 99f133ba334bcc5bba82c8c5f9dc782d20f565f9 /configure.in | |
parent | f0531263e29d50649ea9a734214a8663b2a3fe64 (diff) |
* configure.in: suppress warnings by automake 1.8 or later.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@10599 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/configure.in b/configure.in index e90eac43ff..433bde0368 100644 --- a/configure.in +++ b/configure.in @@ -3,7 +3,7 @@ AC_INIT() AC_PREREQ(2.58) -AC_DEFUN(RUBY_MINGW32, +AC_DEFUN([RUBY_MINGW32], [case "$host_os" in cygwin*) AC_CACHE_CHECK(for mingw32 environment, rb_cv_mingw32, @@ -17,7 +17,7 @@ test "$rb_cv_mingw32" = yes && target_os="mingw32" ;; esac]) -AC_DEFUN(RUBY_CPPOUTFILE, +AC_DEFUN([RUBY_CPPOUTFILE], [AC_CACHE_CHECK(whether ${CPP} accepts -o, rb_cv_cppoutfile, [cppflags=$CPPFLAGS CPPFLAGS='-o conftest.i' @@ -33,7 +33,7 @@ elif test -n "$rb_cv_cppoutfile"; then fi AC_SUBST(CPPOUTFILE)]) -AC_DEFUN(RUBY_PROG_GNU_LD, +AC_DEFUN([RUBY_PROG_GNU_LD], [AC_CACHE_CHECK(whether the linker is GNU ld, rb_cv_prog_gnu_ld, [if `$CC $CFLAGS $CPPFLAGS $LDFLAGS --print-prog-name=ld 2>&1` -v 2>&1 | grep "GNU ld" > /dev/null; then rb_cv_prog_gnu_ld=yes @@ -675,7 +675,7 @@ else fi fi -AC_DEFUN(RUBY_CHECK_IO_NEED, +AC_DEFUN([RUBY_CHECK_IO_NEED], [AC_CACHE_CHECK(whether need to [$1], [$2], [AC_TRY_RUN([ #include <stdio.h> @@ -751,7 +751,7 @@ if test $rb_cv_huge_st_ino = yes; then fi if test "$ac_cv_func_sysconf" = yes; then - AC_DEFUN(RUBY_CHECK_SYSCONF, [dnl + AC_DEFUN([RUBY_CHECK_SYSCONF], [dnl AC_CACHE_CHECK([whether _SC_$1 is supported], rb_cv_have_sc_[]m4_tolower($1), [AC_TRY_COMPILE([#include <unistd.h> ], |