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>2013-03-15 21:18:52 +0400
committerThomas Dinges <blender@dingto.org>2013-03-15 21:18:52 +0400
commit87602a6d2aeb09b6642a51269885b6fe7dc44721 (patch)
treee79ce00eaf5d7af2be9865865d8ad2cf83020e35 /source/blender/editors/space_clip
parent08a8d11216053855460fdf54a88e33d88400a985 (diff)
Compile fix:
* Scons needed PThread include after recent movie clip changes.
Diffstat (limited to 'source/blender/editors/space_clip')
-rw-r--r--source/blender/editors/space_clip/SConscript3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/blender/editors/space_clip/SConscript b/source/blender/editors/space_clip/SConscript
index c65a076186f..840a3b49f2b 100644
--- a/source/blender/editors/space_clip/SConscript
+++ b/source/blender/editors/space_clip/SConscript
@@ -34,5 +34,8 @@ incs += ' ../../makesrna ../../windowmanager #/intern/guardedalloc #/extern/glew
if env['WITH_BF_INTERNATIONAL']:
defs.append('WITH_INTERNATIONAL')
+
+if env['OURPLATFORM'] in ('win32-vc', 'win32-mingw', 'linuxcross', 'win64-vc', 'win64-mingw'):
+ incs += ' ' + env['BF_PTHREADS_INC']
env.BlenderLib ( 'bf_editors_space_clip', sources, Split(incs), defs, libtype=['core'], priority=[95] )