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:
-rw-r--r--CMakeLists.txt2
-rw-r--r--source/blender/python/intern/bpy_interface.c5
2 files changed, 6 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 55bfb83a6e6..3b409a07652 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -226,7 +226,7 @@ if(UNIX AND NOT APPLE)
# No way to set py31. remove for now.
# find_package(PythonLibs)
set(PYTHON /usr)
- set(PYTHON_VERSION 3.1)
+ set(PYTHON_VERSION 3.1 CACHE STRING "")
set(PYTHON_INCLUDE_DIRS "${PYTHON}/include/python${PYTHON_VERSION}" CACHE STRING "")
mark_as_advanced(PYTHON_INCLUDE_DIRS)
# set(PYTHON_BINARY python) # not used yet
diff --git a/source/blender/python/intern/bpy_interface.c b/source/blender/python/intern/bpy_interface.c
index 776f2da8507..5c4add0e547 100644
--- a/source/blender/python/intern/bpy_interface.c
+++ b/source/blender/python/intern/bpy_interface.c
@@ -230,6 +230,11 @@ void BPY_python_start( int argc, char **argv )
BPY_python_start_path(); /* allow to use our own included python */
+ /* Python 3.2 now looks for '2.56/python/include/python3.2d/pyconfig.h' to parse
+ * from the 'sysconfig' module which is used by 'site', so for now disable site.
+ * alternatively we could copy the file. */
+ Py_NoSiteFlag= 1;
+
Py_Initialize( );
// PySys_SetArgv( argc, argv); // broken in py3, not a huge deal