Message324427
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;
^ |
|
Date |
User |
Action |
Args |
2018-08-31 15:12:14 | mcduke | set | recipients:
+ mcduke |
2018-08-31 15:12:14 | mcduke | set | messageid: <1535728334.14.0.56676864532.issue34555@psf.upfronthosting.co.za> |
2018-08-31 15:12:14 | mcduke | link | issue34555 messages |
2018-08-31 15:12:14 | mcduke | create | |
|