Changeset 748 for trunk/SConstruct

Show
Ignore:
Timestamp:
10/08/08 02:30:38 (3 months ago)
Author:
artem
Message:

+ fixed building with boost-1_36
+ corrected order of BOOST_TOOLKIT
(create symlinks on OSX + boost-1_35)

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/SConstruct

    r724 r748  
    190190for count, libinfo in enumerate(BOOST_LIBSHEADERS): 
    191191    if  env['THREADING'] == 'multi' : 
    192         if not conf.CheckLibWithHeader('boost_%s%s%s' % (libinfo[0],thread_suffix,env['BOOST_APPEND']), libinfo[1], 'C++') and libinfo[2] : 
     192        if not conf.CheckLibWithHeader('boost_%s%s%s' % (libinfo[0],env['BOOST_APPEND'],thread_suffix), libinfo[1], 'C++') and libinfo[2] : 
    193193            color_print(1,'Could not find header or shared library for boost %s, exiting!' % libinfo[0]) 
    194194            Exit(1)