From 41e35f37edf760898f9c440ac17a4c542c9d88a1 Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Sun, 18 Sep 2016 18:02:58 -0700 Subject: [PATCH] always define HAVE_LONG_LONG (#27961) --- Include/pyport.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Include/pyport.h b/Include/pyport.h index be1d66d5634..421b9549df4 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. */