[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [13868] trunk/blender/tools/Blender.py: removed mingw from the list of platforms to use the

Joseph Eagar joeedh at gmail.com
Tue Feb 26 01:04:54 CET 2008


Revision: 13868
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=13868
Author:   joeedh
Date:     2008-02-26 01:04:54 +0100 (Tue, 26 Feb 2008)

Log Message:
-----------
removed mingw from the list of platforms to use the
debug python lib, as it was causing link errors.

if someone wishes to figure out why this is messing up,
go ahead.

Modified Paths:
--------------
    trunk/blender/tools/Blender.py

Modified: trunk/blender/tools/Blender.py
===================================================================
--- trunk/blender/tools/Blender.py	2008-02-25 18:35:35 UTC (rev 13867)
+++ trunk/blender/tools/Blender.py	2008-02-26 00:04:54 UTC (rev 13868)
@@ -143,7 +143,7 @@
         lenv['BF_PNG_LIB'],
         lenv['BF_ZLIB_LIB']
         ]
-    if lenv['BF_DEBUG']==1 and lenv['OURPLATFORM'] in ('win32-vc', 'win32-mingw'):
+    if lenv['BF_DEBUG']==1 and lenv['OURPLATFORM'] in ('win32-vc'):
         syslibs.append(lenv['BF_PYTHON_LIB']+'_d')
     else:
         syslibs.append(lenv['BF_PYTHON_LIB'])





More information about the Bf-blender-cvs mailing list