[Python-checkins] r74045 - in python/branches/py3k: configure.in

alexandre.vassalotti python-checkins at python.org
Fri Jul 17 08:41:02 CEST 2009


Author: alexandre.vassalotti
Date: Fri Jul 17 08:41:02 2009
New Revision: 74045

Log:
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.
........


Modified:
   python/branches/py3k/   (props changed)
   python/branches/py3k/configure.in

Modified: python/branches/py3k/configure.in
==============================================================================
--- python/branches/py3k/configure.in	(original)
+++ python/branches/py3k/configure.in	Fri Jul 17 08:41:02 2009
@@ -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


More information about the Python-checkins mailing list