Kaydet (Commit) e5091f6c authored tarafından Alexandre Vassalotti's avatar Alexandre Vassalotti

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.
........
üst aee170aa
...@@ -3771,7 +3771,8 @@ fi ...@@ -3771,7 +3771,8 @@ fi
AC_MSG_CHECKING(for %zd printf() format support) AC_MSG_CHECKING(for %zd printf() format support)
AC_CACHE_VAL(ac_cv_have_size_t_format, 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 <stddef.h>
#include <string.h> #include <string.h>
...@@ -3805,9 +3806,9 @@ int main() ...@@ -3805,9 +3806,9 @@ int main()
return 0; return 0;
} }
], ac_cv_have_size_t_format=yes, ]], 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=no) ac_cv_have_size_t_format=no)
) )
AC_MSG_RESULT($ac_cv_have_size_t_format) AC_MSG_RESULT($ac_cv_have_size_t_format)
if test $ac_cv_have_size_t_format = yes if test $ac_cv_have_size_t_format = yes
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment