[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [57874] trunk/blender/source/blender/ blenfont/SConscript: Fix scons/windows build error, missing pthreads include in blenfont for mutex.

Brecht Van Lommel brechtvanlommel at pandora.be
Sat Jun 29 12:52:19 CEST 2013


Revision: 57874
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=57874
Author:   blendix
Date:     2013-06-29 10:52:18 +0000 (Sat, 29 Jun 2013)
Log Message:
-----------
Fix scons/windows build error, missing pthreads include in blenfont for mutex.

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

Modified: trunk/blender/source/blender/blenfont/SConscript
===================================================================
--- trunk/blender/source/blender/blenfont/SConscript	2013-06-29 10:09:15 UTC (rev 57873)
+++ trunk/blender/source/blender/blenfont/SConscript	2013-06-29 10:52:18 UTC (rev 57874)
@@ -55,4 +55,7 @@
 if env['WITH_BF_INTERNATIONAL']:
     defs.append('WITH_INTERNATIONAL')
 
+if env['OURPLATFORM'] in ('win32-vc', 'win32-mingw', 'linuxcross', 'win64-vc', 'win64-mingw'):
+    incs.append(env['BF_PTHREADS_INC'])
+
 env.BlenderLib('bf_blenfont', sources, incs, defines=defs, libtype=['core', 'player'], priority=[210, 210])




More information about the Bf-blender-cvs mailing list