]> granicus.if.org Git - python/commitdiff
Double-quote the test case for %zd printf() format support to avoid
authorAlexandre Vassalotti <alexandre@peadrop.com>
Fri, 17 Jul 2009 06:33:51 +0000 (06:33 +0000)
committerAlexandre Vassalotti <alexandre@peadrop.com>
Fri, 17 Jul 2009 06:33:51 +0000 (06:33 +0000)
mangling the array declarations in it.

configure.in

index a59c94b49306e8ce2f09a99124273b18e86d2779..2add9920d63b90e74420ff620d9c1fbcd8885da2 100644 (file)
@@ -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 <stdio.h>
+AC_TRY_RUN([[
+#include <stdio.h>
 #include <stddef.h>
 #include <string.h>
 
@@ -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