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 masamoto
Recipients donmez, mark.dickinson, masamoto, serhiy.storchaka, twouters, yan12125
Date 2016-10-07.13:36:19
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1475847379.64.0.34289042969.issue25720@psf.upfronthosting.co.za>
In-reply-to
Content
I updated the patch that add configuration check for is_pad. the is_pad is wrapped into py_is_pad at Modules/_cursesmodule.c:932 by either of three ways.

Case one -- is_pad is found: Define the macro that is simple wrapping.
Case two -- is_pad is not found, however WINDOW has _flags field: Define the macro using _flags field.
Case three -- is_pad is not found, and WINDOW doesn't have _flags field: Define the macro that is always preprocessed to FALSE.

I succeeded to build curses module on Cygwin (Vista x86) using this patch.
This patch doesn't include that undo fixes for specific platforms.
History
Date User Action Args
2016-10-07 13:36:19masamotosetrecipients: + masamoto, twouters, mark.dickinson, donmez, serhiy.storchaka, yan12125
2016-10-07 13:36:19masamotosetmessageid: <1475847379.64.0.34289042969.issue25720@psf.upfronthosting.co.za>
2016-10-07 13:36:19masamotolinkissue25720 messages
2016-10-07 13:36:19masamotocreate