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:
authorThomas Dinges <blender@dingto.org>2012-04-13 23:34:15 +0400
committerThomas Dinges <blender@dingto.org>2012-04-13 23:34:15 +0400
commit455b8212b6f64184979a292247bebd081a1e75d9 (patch)
treebf7cf97b6f9a8bce79beb1e7af020114fa74f138 /source/blender/python/SConscript
parentb219b5294b15cff95030a15b929d3c7bbf5d35c7 (diff)
Scons:
* Compile fix for r45609, pthreads include was missing.
Diffstat (limited to 'source/blender/python/SConscript')
-rw-r--r--source/blender/python/SConscript3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/blender/python/SConscript b/source/blender/python/SConscript
index 996ee542769..08b3fc8e643 100644
--- a/source/blender/python/SConscript
+++ b/source/blender/python/SConscript
@@ -55,6 +55,9 @@ if env['WITH_BF_CYCLES']:
if env['WITH_BF_FFMPEG']:
defs.append('WITH_FFMPEG')
incs += ' ' + env['BF_FFMPEG_INC']
+
+if env['OURPLATFORM'] in ('win32-vc', 'win32-mingw', 'linuxcross', 'win64-vc'):
+ incs += ' ' + env['BF_PTHREADS_INC']
sources = env.Glob('intern/*.c')
env.BlenderLib( libname = 'bf_python', sources = Split(sources), includes = Split(incs), defines = defs, libtype = ['core'], priority = [361])