New submission from Erik Bray <erik.m.b...@gmail.com>: 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. ---------- messages: 305065 nosy: erik.bray priority: normal severity: normal status: open title: Cygwin: _socket module does not compile due to missing ioctl declaration type: compile error _______________________________________ Python tracker <rep...@bugs.python.org> <https://bugs.python.org/issue31878> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com