[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [24371] trunk/blender/intern/bsp/ SConscript: Fix for scons + mingw compiling

Joshua Leung aligorith at gmail.com
Fri Nov 6 09:32:50 CET 2009


Revision: 24371
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=24371
Author:   aligorith
Date:     2009-11-06 09:32:50 +0100 (Fri, 06 Nov 2009)

Log Message:
-----------
Fix for scons + mingw compiling 

Removed the special exception for booleans lib priority, which was needed in the past to get it compiling ok with the src directory. 

Modified Paths:
--------------
    trunk/blender/intern/bsp/SConscript

Modified: trunk/blender/intern/bsp/SConscript
===================================================================
--- trunk/blender/intern/bsp/SConscript	2009-11-05 21:34:47 UTC (rev 24370)
+++ trunk/blender/intern/bsp/SConscript	2009-11-06 08:32:50 UTC (rev 24371)
@@ -5,8 +5,5 @@
 
 incs = 'intern ../container ../moto/include ../memutil'
 
-if (env['OURPLATFORM'] == 'win32-mingw'):
-    env.BlenderLib ('blender_BSP', sources, Split(incs), [], libtype='core', priority=26 )
-else:
-    env.BlenderLib ('blender_BSP', sources, Split(incs), [], libtype='core', priority=200 )
+env.BlenderLib ('blender_BSP', sources, Split(incs), [], libtype='core', priority=200 )
 





More information about the Bf-blender-cvs mailing list