Changeset 748

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)

Location:
trunk
Files:
4 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) 
  • trunk/bindings/python/SConscript

    r707 r748  
    4141libraries = ['mapnik','png','jpeg'] 
    4242if env['THREADING'] == 'multi': 
    43     libraries.append('boost_python%s%s' % (thread_suffix,env['BOOST_APPEND'])) 
     43    libraries.append('boost_python%s%s' % (env['BOOST_APPEND'],thread_suffix)) 
    4444else : 
    4545    libraries.append('boost_python%s' % env['BOOST_APPEND']) 
     
    4949    libraries.append('icudata') 
    5050    if env['THREADING'] == 'multi': 
    51         libraries.append('boost_regex%s%s' % (thread_suffix,env['BOOST_APPEND'])) 
     51        libraries.append('boost_regex%s%s' % (env['BOOST_APPEND'],thread_suffix)) 
    5252    else : 
    5353        libraries.append('boost_regex%s' % env['BOOST_APPEND']) 
    5454    if env['THREADING'] == 'multi': 
    55         libraries.append('boost_thread%s%s' % (thread_suffix,env['BOOST_APPEND'])) 
     55        libraries.append('boost_thread%s%s' % (env['BOOST_APPEND'],thread_suffix)) 
    5656    if '-DHAVE_PYCAIRO' in env['CXXFLAGS']: 
    5757        libraries.append([lib for lib in env['LIBS'] if lib.startswith('cairo')]) 
  • trunk/plugins/input/shape/SConscript

    r707 r748  
    4141     
    4242if env['THREADING'] == 'multi': 
    43     libraries = ['boost_iostreams%s%s' % (thread_suffix,env['BOOST_APPEND']) ] 
     43    libraries = ['boost_iostreams%s%s' % (env['BOOST_APPEND'],thread_suffix) ] 
    4444else: 
    4545    libraries = ['boost_iostreams%s' % (env['BOOST_APPEND']) ] 
  • trunk/src/datasource_cache.cpp

    r632 r748  
    126126         for (filesystem::directory_iterator itr(path);itr!=end_itr;++itr ) 
    127127         { 
    128             if (!is_directory( *itr )  && is_input_plugin(itr->leaf())) 
     128           if (!is_directory( *itr )  && is_input_plugin(itr->path().leaf())) 
    129129            { 
    130130               try