Show
Ignore:
Timestamp:
06/29/08 07:40:35 (6 months ago)
Author:
artem
Message:

corrected boost libs names logic

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/bindings/python/SConscript

    r703 r707  
    4141libraries = ['mapnik','png','jpeg'] 
    4242if env['THREADING'] == 'multi': 
    43     libraries.append('boost_python%s%s' % (env['BOOST_APPEND'],thread_suffix)) 
     43    libraries.append('boost_python%s%s' % (thread_suffix,env['BOOST_APPEND'])) 
    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' % (env['BOOST_APPEND'],thread_suffix)) 
     51        libraries.append('boost_regex%s%s' % (thread_suffix,env['BOOST_APPEND'])) 
    5252    else : 
    5353        libraries.append('boost_regex%s' % env['BOOST_APPEND']) 
    5454    if env['THREADING'] == 'multi': 
    55         libraries.append('boost_thread%s%s' % (env['BOOST_APPEND'],thread_suffix)) 
     55        libraries.append('boost_thread%s%s' % (thread_suffix,env['BOOST_APPEND'])) 
    5656    if '-DHAVE_PYCAIRO' in env['CXXFLAGS']: 
    5757        libraries.append([lib for lib in env['LIBS'] if lib.startswith('cairo')])