Cycles: more linux build system tweaks, attempting to avoid using boost

system libraries by default if we have a lib/ directory.
This commit is contained in:
Brecht Van Lommel
2011-11-11 20:57:00 +00:00
parent 38fd8c0e22
commit 0f85990d4a
2 changed files with 8 additions and 7 deletions

View File

@@ -211,7 +211,7 @@ if not os.path.exists(LCGDIR + '/boost'):
WITH_BF_BOOST = False
BF_BOOST = '/usr'
BF_BOOST_INC = BF_BOOST + '/include'
BF_BOOST_LIB = 'boost_date_time-mt boost_filesystem-mt boost_regex-mt boost_system-mt boost_thread-mt'
BF_BOOST_LIB = 'boost_date_time boost_filesystem boost_regex boost_system boost_thread'
BF_BOOST_LIBPATH = BF_BOOST + '/lib'
WITH_BF_CYCLES = WITH_BF_OIIO and WITH_BF_BOOST