[issue31878] Cygwin: _socket module does not compile due to missing ioctl declaration

2020-10-19 Thread Erik Bray
Change by Erik Bray : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___ Pyt

[issue31878] Cygwin: _socket module does not compile due to missing ioctl declaration

2020-10-16 Thread Irit Katriel
Irit Katriel added the comment: This seems complete, can it be closed? -- nosy: +iritkatriel ___ Python tracker ___ ___ Python-bugs

[issue31878] Cygwin: _socket module does not compile due to missing ioctl declaration

2017-10-27 Thread Roundup Robot
Change by Roundup Robot : -- pull_requests: +4111 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue31878] Cygwin: _socket module does not compile due to missing ioctl declaration

2017-10-26 Thread Erik Bray
Change by Erik Bray : -- keywords: +patch pull_requests: +4100 stage: -> patch review ___ Python tracker ___ ___ Python-bugs-list ma

[issue31878] Cygwin: _socket module does not compile due to missing ioctl declaration

2017-10-26 Thread Erik Bray
New submission from Erik Bray : On Cygwin, ioctl() is found in sys/ioctl.h (as on Darwin). Without adding something to the effect of #ifdef __CYGWIN__ # include #endif the _socket module cannot compile on Cygwin. A fix was this was included in the (rejected) https://bugs.python.org/issue29