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.
This commit is contained in:
Damien Plisson
2010-07-03 12:11:05 +00:00
parent ec770b7538
commit d79a2c6f0e

View File

@@ -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'