[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [60725] trunk/blender/source/blender/ editors/mask/SConscript: * Fix scons compilation on Windows, missing pthreads include.

Thomas Dinges blender at dingto.org
Sun Oct 13 11:27:49 CEST 2013


Revision: 60725
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=60725
Author:   dingto
Date:     2013-10-13 09:27:48 +0000 (Sun, 13 Oct 2013)
Log Message:
-----------
* Fix scons compilation on Windows, missing pthreads include. 

Modified Paths:
--------------
    trunk/blender/source/blender/editors/mask/SConscript

Modified: trunk/blender/source/blender/editors/mask/SConscript
===================================================================
--- trunk/blender/source/blender/editors/mask/SConscript	2013-10-13 05:45:29 UTC (rev 60724)
+++ trunk/blender/source/blender/editors/mask/SConscript	2013-10-13 09:27:48 UTC (rev 60725)
@@ -41,5 +41,8 @@
     '../../makesrna',
     '../../windowmanager',
     ]
+    
+if env['OURPLATFORM'] in ('win32-vc', 'win32-mingw', 'linuxcross', 'win64-vc', 'win64-mingw'):
+    incs.append(env['BF_PTHREADS_INC'])
 
 env.BlenderLib('bf_editors_mask', sources, incs, defs, libtype=['core'], priority=[100])




More information about the Bf-blender-cvs mailing list