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 christian.heimes
Recipients Alex.Willmer, brett.cannon, christian.heimes
Date 2021-11-24.21:50:04
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1637790604.74.0.0454243973029.issue45895@roundup.psfhosted.org>
In-reply-to
Content
posixmodule.c defines _Py_Sigset_Converter() only when feature macro HAVE_SIGSET_T is set. Several use of the function miss the feature macro check and fail on platforms without sigset_t (e.g. wasm).

Modules/posixmodule.c:5939:14: error: implicit declaration of function '_Py_Sigset_Converter' is invalid in C99 [-Werror,-Wimplicit-function-declaration]
Modules/posixmodule.c:5952:14: error: implicit declaration of function '_Py_Sigset_Converter' is invalid in C99 [-Werror,-Wimplicit-function-declaration]
Modules/clinic/signalmodule.c.h:385:10: error: implicit declaration of function '_Py_Sigset_Converter' is invalid in C99 [-Werror,-Wimplicit-function-declaration]
History
Date User Action Args
2021-11-24 21:50:04christian.heimessetrecipients: + christian.heimes, brett.cannon, Alex.Willmer
2021-11-24 21:50:04christian.heimessetmessageid: <1637790604.74.0.0454243973029.issue45895@roundup.psfhosted.org>
2021-11-24 21:50:04christian.heimeslinkissue45895 messages
2021-11-24 21:50:04christian.heimescreate