diff -rupN Python-2.7.13/Include/pyport.h Python-2.7.13-new/Include/pyport.h --- Python-2.7.13/Include/pyport.h 2016-12-17 21:05:05.000000000 +0100 +++ Python-2.7.13-new/Include/pyport.h 2017-01-21 01:46:04.365630414 +0100 @@ -13,6 +13,21 @@ #include #endif +#ifdef __MINGW32__ +/* Translate GCC[mingw*] platform specific defines to those + * used in python code. + */ +#if !defined(MS_WIN64) && defined(_WIN64) +# define MS_WIN64 +#endif +#if !defined(MS_WIN32) && defined(_WIN32) +# define MS_WIN32 +#endif +#if !defined(MS_WINDOWS) && defined(MS_WIN32) +# define MS_WINDOWS +#endif +#endif /*def __MINGW32__*/ + /************************************************************************** Symbols and macros to supply platform-independent interfaces to basic C language & library operations whose spellings vary across platforms.