➜

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 mcduke
Recipients mcduke
Date 2018-08-31.15:12:14
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1535728334.14.0.56676864532.issue34555@psf.upfronthosting.co.za>
In-reply-to
Content
If ./configure runs with the following result...

checking for linux/vm_sockets.h... no
checking for sockaddr_alg... no

...then the result of the first check is treated as if it was "yes". This is because the logic for disabling the vm_sockets functionality is nested inside an #ifdef HAVE_SOCKADDR_ALG.

This leads to compilation errors:

In file included from ./Modules/socketmodule.c:283:0:
./Modules/socketmodule.h:206:24: error: field ‘vm’ has incomplete type
     struct sockaddr_vm vm;
                        ^
History
Date User Action Args
2018-08-31 15:12:14mcdukesetrecipients: + mcduke
2018-08-31 15:12:14mcdukesetmessageid: <1535728334.14.0.56676864532.issue34555@psf.upfronthosting.co.za>
2018-08-31 15:12:14mcdukelinkissue34555 messages
2018-08-31 15:12:14mcdukecreate