summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCharles-François Natali <cf.natali@gmail.com>2013-01-19 11:21:26 (GMT)
committerCharles-François Natali <cf.natali@gmail.com>2013-01-19 11:21:26 (GMT)
commit95195b35b84979f9d893d09c594309b4c79d3d56 (patch)
tree1363e38e30f7bc9e7ee6e540092c920efb5264e6
parent9101e23ff6006d9ede7d46e8c9e7d39e23c2a3c3 (diff)
parent986a56cefefc9200a0bbebca02bc93f24e4a3eaa (diff)
downloadcpython-95195b35b84979f9d893d09c594309b4c79d3d56.zip
cpython-95195b35b84979f9d893d09c594309b4c79d3d56.tar.gz
cpython-95195b35b84979f9d893d09c594309b4c79d3d56.tar.bz2
Issue #16953: Fix socket module compilation on platforms with HAVE_BROKEN_POLL.
Patch by Jeffrey Armstrong.
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS3
-rw-r--r--Modules/selectmodule.c4
3 files changed, 6 insertions, 2 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index ae00e88..661d0ec 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -45,6 +45,7 @@ Jon Anglin
Heidi Annexstad
Éric Araujo
Alicia Arlen
+Jeffrey Armstrong
Jason Asbahr
David Ascher
Chris AtLee
diff --git a/Misc/NEWS b/Misc/NEWS
index d7e01a7..74d9840 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -517,6 +517,9 @@ Tests
Build
-----
+- Issue #16953: Fix socket module compilation on platforms with
+ HAVE_BROKEN_POLL. Patch by Jeffrey Armstrong.
+
- Issue #16836: Enable IPv6 support even if IPv6 is disabled on the build host.
- Cross compiling needs host and build settings. configure no longer
diff --git a/Modules/selectmodule.c b/Modules/selectmodule.c
index ce5ed47..06abcf1 100644
--- a/Modules/selectmodule.c
+++ b/Modules/selectmodule.c
@@ -2098,7 +2098,7 @@ descriptors can be used.");
static PyMethodDef select_methods[] = {
{"select", select_select, METH_VARARGS, select_doc},
-#ifdef HAVE_POLL
+#if defined(HAVE_POLL) && !defined(HAVE_BROKEN_POLL)
{"poll", select_poll, METH_NOARGS, poll_doc},
#endif /* HAVE_POLL */
#ifdef HAVE_SYS_DEVPOLL_H
@@ -2148,7 +2148,7 @@ PyInit_select(void)
PyModule_AddIntConstant(m, "PIPE_BUF", PIPE_BUF);
#endif
-#if defined(HAVE_POLL)
+#if defined(HAVE_POLL) && !defined(HAVE_BROKEN_POLL)
#ifdef __APPLE__
if (select_have_broken_poll()) {
if (PyObject_DelAttrString(m, "poll") == -1) {