From a7cf7b114f82625aa5d81e91e26e67cbe7a842bc Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 16 Oct 2019 13:39:29 +1100 Subject: [PATCH] Fix for building with Python 3.8 --- source/blender/python/generic/py_capi_utils.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/source/blender/python/generic/py_capi_utils.c b/source/blender/python/generic/py_capi_utils.c index a6983c38f0e..66cb4cc0bf3 100644 --- a/source/blender/python/generic/py_capi_utils.c +++ b/source/blender/python/generic/py_capi_utils.c @@ -28,6 +28,12 @@ #include #include +/* Needed for 'PyInterpreterState', we should remove this dependency. */ +#if PY_VERSION_HEX >= 0x03080000 +# define Py_BUILD_CORE +# include +#endif + #include "BLI_utildefines.h" /* for bool */ #include "py_capi_utils.h"