From: Benjamin Peterson Date: Mon, 19 Sep 2016 01:02:58 +0000 (-0700) Subject: always define HAVE_LONG_LONG (#27961) X-Git-Tag: v3.6.0b2~167 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=41e35f37edf760898f9c440ac17a4c542c9d88a1;p=python always define HAVE_LONG_LONG (#27961) --- diff --git a/Include/pyport.h b/Include/pyport.h index be1d66d563..421b9549df 100644 --- a/Include/pyport.h +++ b/Include/pyport.h @@ -37,6 +37,9 @@ Used in: Py_SAFE_DOWNCAST * integral synonyms. Only define the ones we actually need. */ +// long long is required now. Define HAVE_LONG_LONG unconditionally for +// compatibility. +#define HAVE_LONG_LONG #ifndef PY_LONG_LONG #define PY_LONG_LONG long long /* If LLONG_MAX is defined in limits.h, use that. */