(original) (raw)
changeset: 103934:cf6e9968ebb7 branch: 3.6 parent: 103932:bdbe09afcd20 user: Benjamin Peterson benjamin@python.org date: Sun Sep 18 18:02:58 2016 -0700 files: Include/pyport.h description: always define HAVE_LONG_LONG (#27961) diff -r bdbe09afcd20 -r cf6e9968ebb7 Include/pyport.h --- a/Include/pyport.h Sun Sep 18 18:00:25 2016 -0700 +++ b/Include/pyport.h Sun Sep 18 18:02:58 2016 -0700 @@ -37,6 +37,9 @@ * 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. */ /benjamin@python.org