Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2019-10-16 05:39:29 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-10-16 05:39:29 +0300
commita7cf7b114f82625aa5d81e91e26e67cbe7a842bc (patch)
tree39231c02de9cbb44c0543716c6b7e8fef185f251 /source/blender/python
parentcfb6ffd48f77c338628c9546accbafd5c5b4175c (diff)
Fix for building with Python 3.8
Diffstat (limited to 'source/blender/python')
-rw-r--r--source/blender/python/generic/py_capi_utils.c6
1 files changed, 6 insertions, 0 deletions
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 <Python.h>
#include <frameobject.h>
+/* Needed for 'PyInterpreterState', we should remove this dependency. */
+#if PY_VERSION_HEX >= 0x03080000
+# define Py_BUILD_CORE
+# include <internal/pycore_pystate.h>
+#endif
+
#include "BLI_utildefines.h" /* for bool */
#include "py_capi_utils.h"