This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author erik.bray
Recipients erik.bray
Date 2017-10-26.15:42:21
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1509032541.6.0.213398074469.issue31878@psf.upfronthosting.co.za>
In-reply-to
Content
On Cygwin, ioctl() is found in sys/ioctl.h (as on Darwin).  Without adding something to the effect of

#ifdef __CYGWIN__
# include <sys/ioctl.h>
#endif

the _socket module cannot compile on Cygwin.  A fix was this was included in the (rejected) https://bugs.python.org/issue29718; this issue is just as a reminder that it remains an issue and to have a bug report to attach a more focused PR to.
History
Date User Action Args
2017-10-26 15:42:21erik.braysetrecipients: + erik.bray
2017-10-26 15:42:21erik.braysetmessageid: <1509032541.6.0.213398074469.issue31878@psf.upfronthosting.co.za>
2017-10-26 15:42:21erik.braylinkissue31878 messages
2017-10-26 15:42:21erik.braycreate