From: Alexandre Vassalotti Date: Fri, 17 Jul 2009 06:41:02 +0000 (+0000) Subject: Merged revisions 74044 via svnmerge from X-Git-Tag: v3.2a1~2818 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e5091f6c5a8c5120588543661fb9abb3ec46eb43;p=python Merged revisions 74044 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r74044 | alexandre.vassalotti | 2009-07-17 02:33:51 -0400 (Fri, 17 Jul 2009) | 3 lines Double-quote the test case for %zd printf() format support to avoid mangling the array declarations in it. ........ --- diff --git a/configure.in b/configure.in index 17b89b0ad9..2876eb92a2 100644 --- a/configure.in +++ b/configure.in @@ -3771,7 +3771,8 @@ fi AC_MSG_CHECKING(for %zd printf() format support) AC_CACHE_VAL(ac_cv_have_size_t_format, -AC_TRY_RUN([#include +AC_TRY_RUN([[ +#include #include #include @@ -3805,9 +3806,9 @@ int main() return 0; } -], ac_cv_have_size_t_format=yes, - ac_cv_have_size_t_format=no, - ac_cv_have_size_t_format=no) +]], ac_cv_have_size_t_format=yes, + ac_cv_have_size_t_format=no, + ac_cv_have_size_t_format=no) ) AC_MSG_RESULT($ac_cv_have_size_t_format) if test $ac_cv_have_size_t_format = yes