changeset: 105520:4745d801cae2 branch: 3.6 parent: 105518:148c46d180b2 user: Benjamin Peterson date: Wed Dec 07 23:54:28 2016 -0800 files: Include/pyport.h description: guard HAVE_LONG_LONG definition to prevent redefinition (#28898) diff -r 148c46d180b2 -r 4745d801cae2 Include/pyport.h --- a/Include/pyport.h Wed Dec 07 23:37:12 2016 -0500 +++ b/Include/pyport.h Wed Dec 07 23:54:28 2016 -0800 @@ -37,9 +37,10 @@ * integral synonyms. Only define the ones we actually need. */ -// long long is required now. Define HAVE_LONG_LONG unconditionally for -// compatibility. +// long long is required. Ensure HAVE_LONG_LONG is defined for compatibility. +#ifndef HAVE_LONG_LONG #define HAVE_LONG_LONG +#endif #ifndef PY_LONG_LONG #define PY_LONG_LONG long long /* If LLONG_MAX is defined in limits.h, use that. */