[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [56284] trunk/blender/source/blender/ blenloader/SConscript: Fix build error with scons + msvc, needs pthread include.

Brecht Van Lommel brechtvanlommel at pandora.be
Thu Apr 25 02:06:44 CEST 2013


Revision: 56284
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=56284
Author:   blendix
Date:     2013-04-25 00:06:43 +0000 (Thu, 25 Apr 2013)
Log Message:
-----------
Fix build error with scons + msvc, needs pthread include.

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

Modified: trunk/blender/source/blender/blenloader/SConscript
===================================================================
--- trunk/blender/source/blender/blenloader/SConscript	2013-04-24 23:09:29 UTC (rev 56283)
+++ trunk/blender/source/blender/blenloader/SConscript	2013-04-25 00:06:43 UTC (rev 56284)
@@ -35,6 +35,9 @@
 
 incs += ' ' + env['BF_ZLIB_INC']
 
+if env['OURPLATFORM'] in ('win32-vc', 'win32-mingw', 'linuxcross', 'win64-vc', 'win64-mingw'):
+    incs += ' ' + env['BF_PTHREADS_INC']
+
 defs = []
 
 if env['WITH_BF_INTERNATIONAL']:




More information about the Bf-blender-cvs mailing list