Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorDamien Plisson <damien.plisson@yahoo.fr>2010-07-03 16:11:05 +0400
committerDamien Plisson <damien.plisson@yahoo.fr>2010-07-03 16:11:05 +0400
commitd79a2c6f0e1fffc63823751ce5ac01006cc67e69 (patch)
tree1fe5a3fd59dd88d8a5f270c8e9dca986d2893def /config
parentec770b75382bb6fcb718d902593d6175a15333f3 (diff)
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.
Diffstat (limited to 'config')
-rw-r--r--config/darwin-config.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/config/darwin-config.py b/config/darwin-config.py
index a9a2582fc68..f6d9ca97a19 100644
--- a/config/darwin-config.py
+++ b/config/darwin-config.py
@@ -152,7 +152,11 @@ BF_OPENEXR_LIB_STATIC = '${BF_OPENEXR}/lib/libHalf.a ${BF_OPENEXR}/lib/libIlmImf
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'