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 17b89b0..2876eb9 100644
--- a/configure.in
+++ b/configure.in
@@ -3771,7 +3771,8 @@
AC_MSG_CHECKING(for %zd printf() format support)
AC_CACHE_VAL(ac_cv_have_size_t_format,
-AC_TRY_RUN([#include <stdio.h>
+AC_TRY_RUN([[
+#include <stdio.h>
#include <stddef.h>
#include <string.h>
@@ -3805,9 +3806,9 @@
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