From: Alexandre Vassalotti Date: Fri, 17 Jul 2009 06:33:51 +0000 (+0000) Subject: Double-quote the test case for %zd printf() format support to avoid X-Git-Tag: v2.7a1~753 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e7cf1183fecbcaa97d99c80412111fb5cf7e5972;p=python 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 a59c94b493..2add9920d6 100644 --- a/configure.in +++ b/configure.in @@ -3777,7 +3777,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 @@ -3811,9 +3812,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