[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [29900] trunk/blender/config/darwin-config .py: OSX scons : disable build with lcms by default until scons scripts are updated to take into account lcms include and lib paths different from /usr

Damien Plisson damien.plisson at yahoo.fr
Sat Jul 3 14:11:05 CEST 2010


Revision: 29900
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=29900
Author:   damien78
Date:     2010-07-03 14:11:05 +0200 (Sat, 03 Jul 2010)

Log Message:
-----------
OSX scons : disable build with lcms by default until scons scripts are updated to take into account lcms include and lib paths different from /usr

I've released this scons scripts update as patch #22723, for it to be checked for no adverse effects on other platforms.

Modified Paths:
--------------
    trunk/blender/config/darwin-config.py

Modified: trunk/blender/config/darwin-config.py
===================================================================
--- trunk/blender/config/darwin-config.py	2010-07-03 11:57:29 UTC (rev 29899)
+++ trunk/blender/config/darwin-config.py	2010-07-03 12:11:05 UTC (rev 29900)
@@ -152,7 +152,11 @@
 WITH_BF_DDS = True
 
 #Color Management System
-WITH_BF_LCMS = True
+WITH_BF_LCMS = False
+BF_LCMS = LIBDIR + '/lcms'
+BF_LCMS_INC = '${BF_LCMS}/include'
+BF_LCMS_LIB = 'lcms'
+BF_LCMS_LIBPATH = '${BF_LCMS}/lib'
 
 WITH_BF_JPEG = True
 BF_JPEG = LIBDIR + '/jpeg'





More information about the Bf-blender-cvs mailing list