From 04d1fc84b47eedef3a3036afe89749116467481a Mon Sep 17 00:00:00 2001 From: nobu Date: Mon, 6 Apr 2009 17:47:33 +0000 Subject: [PATCH] * configure.in (RUBY_DEFINT): use AC_INCLUDES_DEFAULT. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@23147 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- configure.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.in b/configure.in index 7a7b4f6187..9c93bd9ae1 100644 --- a/configure.in +++ b/configure.in @@ -981,8 +981,8 @@ typedef $1 t; int s = sizeof(t) == 42;])], if test "${rb_cv_type_$1}" != no; then AC_DEFINE([HAVE_]AS_TR_CPP($1), 1) if test "${rb_cv_type_$1}" = yes; then - m4_bmatch([$2], [^[1-9][0-9]*$], [AC_CHECK_SIZEOF([$1], 0, [$4])], - [RUBY_CHECK_SIZEOF([$1], [$2], [], [$4])]) + m4_bmatch([$2], [^[1-9][0-9]*$], [AC_CHECK_SIZEOF([$1], 0, [AC_INCLUDES_DEFAULT([$4])])], + [RUBY_CHECK_SIZEOF([$1], [$2], [], [AC_INCLUDES_DEFAULT([$4])])]) else AC_DEFINE_UNQUOTED($1, [$rb_cv_type_$1]) AC_DEFINE_UNQUOTED([SIZEOF_]AS_TR_CPP($1), [SIZEOF_]AS_TR_CPP([$rb_cv_type_$1]))