[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [45612] trunk/blender/source/blender/ python/SConscript: Scons:

Thomas Dinges blender at dingto.org
Fri Apr 13 21:34:16 CEST 2012


Revision: 45612
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=45612
Author:   dingto
Date:     2012-04-13 19:34:15 +0000 (Fri, 13 Apr 2012)
Log Message:
-----------
Scons:
* Compile fix for r45609, pthreads include was missing. 

Revision Links:
--------------
    http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=45609

Modified Paths:
--------------
    trunk/blender/source/blender/python/SConscript

Modified: trunk/blender/source/blender/python/SConscript
===================================================================
--- trunk/blender/source/blender/python/SConscript	2012-04-13 17:42:03 UTC (rev 45611)
+++ trunk/blender/source/blender/python/SConscript	2012-04-13 19:34:15 UTC (rev 45612)
@@ -55,6 +55,9 @@
 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])




More information about the Bf-blender-cvs mailing list