summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2003-05-05 22:00:11 (GMT)
committerMartin v. Löwis <martin@v.loewis.de>2003-05-05 22:00:11 (GMT)
commitf2e488db239054e41edbcc645364867d234b7259 (patch)
tree79958d94b1c4cc1824de62cfe1075a4d8f3e030f
parent4887a12133e17d6b5a816aa289e96ca7764d6009 (diff)
downloadcpython-f2e488db239054e41edbcc645364867d234b7259.zip
cpython-f2e488db239054e41edbcc645364867d234b7259.tar.gz
cpython-f2e488db239054e41edbcc645364867d234b7259.tar.bz2
Patch #732479: Fix typos.
-rwxr-xr-xconfigure5
-rw-r--r--configure.in3
2 files changed, 5 insertions, 3 deletions
diff --git a/configure b/configure
index 31f7ae63..952b430 100755
--- a/configure
+++ b/configure
@@ -1,5 +1,5 @@
#! /bin/sh
-# From configure.in Revision: 1.406 .
+# From configure.in Revision: 1.407 .
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.53 for python 2.3.
#
@@ -12824,6 +12824,7 @@ cat >conftest.$ac_ext <<_ACEOF
#include "confdefs.h"
#include "confdefs.h"
+#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
@@ -12877,7 +12878,7 @@ cat >conftest.$ac_ext <<_ACEOF
#include "confdefs.h"
#include "confdefs.h"
-#include <unistd.h.h>
+#include <unistd.h>
#ifdef F77_DUMMY_MAIN
# ifdef __cplusplus
diff --git a/configure.in b/configure.in
index 5918bb0..3e37381 100644
--- a/configure.in
+++ b/configure.in
@@ -2003,6 +2003,7 @@ AC_TRY_LINK([
AC_MSG_CHECKING(for inet_pton)
AC_TRY_COMPILE([
#include "confdefs.h"
+#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
@@ -2015,7 +2016,7 @@ AC_TRY_COMPILE([
AC_MSG_CHECKING(for setgroups)
AC_TRY_COMPILE([
#include "confdefs.h"
-#include <unistd.h.h>
+#include <unistd.h>
],
void* p = setgroups,
AC_DEFINE(HAVE_SETGROUPS, 1, Define if you have the 'setgroups' function.)