33 lines
887 B
Diff
33 lines
887 B
Diff
From 4f10cdb8782deabae69e1140e184183c55ad146b Mon Sep 17 00:00:00 2001
|
|
From: Christoph Reiter <reiter.christoph@gmail.com>
|
|
Date: Thu, 17 Jun 2021 18:52:23 +0530
|
|
Subject: [PATCH 042/N] configure.ac: fix inet_pton check
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
Co-authored-by: Алексей <alexey.pawlow@gmail.com>
|
|
---
|
|
configure.ac | 4 ++++
|
|
1 file changed, 4 insertions(+)
|
|
|
|
diff --git a/configure.ac b/configure.ac
|
|
index af1f711..87e8fc6 100644
|
|
--- a/configure.ac
|
|
+++ b/configure.ac
|
|
@@ -5403,10 +5403,14 @@ PY_CHECK_NETDB_FUNC([getprotobyname])
|
|
|
|
dnl PY_CHECK_SOCKET_FUNC(FUNCTION)
|
|
AC_DEFUN([PY_CHECK_SOCKET_FUNC], [PY_CHECK_FUNC([$1], [
|
|
+#ifdef _WIN32
|
|
+#include <ws2tcpip.h>
|
|
+#else
|
|
#include <sys/types.h>
|
|
#include <sys/socket.h>
|
|
#include <netinet/in.h>
|
|
#include <arpa/inet.h>
|
|
+#endif
|
|
])])
|
|
|
|
PY_CHECK_SOCKET_FUNC([inet_aton])
|