summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Krah <skrah@bytereef.org>2012-11-22 23:47:32 +0100
committerStefan Krah <skrah@bytereef.org>2012-11-22 23:47:32 +0100
commit19c2139d2d7ce873b175b5a38741ecb8cda53220 (patch)
tree380e2d3f8cda1cd755661e2928fba20ee07c2ffc
parent7dba5940ae0b4d8b82b5497717accaa03ee66f1c (diff)
downloadcpython-git-19c2139d2d7ce873b175b5a38741ecb8cda53220.tar.gz
Fix more usages of NULL without including stdio.h.
-rwxr-xr-xconfigure2
-rw-r--r--configure.ac2
2 files changed, 4 insertions, 0 deletions
diff --git a/configure b/configure
index 534c8df416..bea5062c20 100755
--- a/configure
+++ b/configure
@@ -11620,6 +11620,7 @@ else
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
+#include <stdio.h>
#include <sys/types.h>
#include <netdb.h>
#include <string.h>
@@ -14833,6 +14834,7 @@ else
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
+#include <stdio.h>
#include<stdlib.h>
int main() {
size_t len = -1;
diff --git a/configure.ac b/configure.ac
index 862d694e75..4d4f05fb38 100644
--- a/configure.ac
+++ b/configure.ac
@@ -3119,6 +3119,7 @@ then
AC_MSG_CHECKING(getaddrinfo bug)
AC_CACHE_VAL(ac_cv_buggy_getaddrinfo,
AC_RUN_IFELSE([AC_LANG_SOURCE([[[
+#include <stdio.h>
#include <sys/types.h>
#include <netdb.h>
#include <string.h>
@@ -4447,6 +4448,7 @@ AC_CHECK_TYPE(socklen_t,,
AC_MSG_CHECKING(for broken mbstowcs)
AC_CACHE_VAL(ac_cv_broken_mbstowcs,
AC_RUN_IFELSE([AC_LANG_SOURCE([[
+#include <stdio.h>
#include<stdlib.h>
int main() {
size_t len = -1;