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.

classification
Title: [Patch] Also disable the use of on CloudABI
Type: Stage:
Components: Extension Modules Versions: Python 3.6
process
Status: open Resolution:
Dependencies: Superseder:
Assigned To: Nosy List: EdSchouten
Priority: normal Keywords:

Created on 2016-07-30 10:50 by EdSchouten, last changed 2022-04-11 14:58 by admin.

Files
File name Uploaded Description Edit
patch-no-netinet-tcp_h EdSchouten, 2016-07-30 10:50 Patch for disabling use of <netinet/tcp.h> on CloudABI
Messages (1)
msg271679 - (view) Author: Ed Schouten (EdSchouten) * Date: 2016-07-30 10:50
While porting Python over to CloudABI (https://mail.python.org/pipermail/python-dev/2016-July/145708.html), we stumbled upon a small issue that caused the build to fail.

As CloudABI is a sandboxed environment, there currently isn't any support for modifying low-level network properties, such as TCP socket attributes. For this reason <netinet/tcp.h> is missing, just like on a couple of other platforms (Symbian, Cygwin, etc).

The attached patch extends the current '#ifndef' to also take CloudABI into consideration.
History
Date User Action Args
2022-04-11 14:58:34adminsetgithub: 71840
2016-07-30 10:50:24EdSchoutencreate