Changeset 701 for trunk/bindings/python/SConscript
- Timestamp:
- 06/29/08 06:40:08 (5 months ago)
- Files:
-
- 1 modified
-
trunk/bindings/python/SConscript (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/bindings/python/SConscript
r668 r701 41 41 libraries = ['mapnik','png','jpeg'] 42 42 if env['THREADING'] == 'multi': 43 libraries.append('boost_python%s%s' % (env['BOOST_APPEND'],thread_suffix)) 44 else : 45 libraries.append('boost_python%s' % env['BOOST_APPEND']) 43 #libraries.append('boost_python%s%s-1_35' % (env['BOOST_APPEND'],thread_suffix)) 44 libraries.append('boost_python%s-1_35' % (thread_suffix)) 45 #else : 46 # libraries.append('boost_python%s' % env['BOOST_APPEND']) 46 47 47 48 if env['PLATFORM'] == 'Darwin': 49 libraries.append(env['LIBS']) 48 50 libraries.append('icuuc') 49 51 libraries.append('icudata') 50 if env['THREADING'] == 'multi': 51 libraries.append('boost_regex%s%s' % (env['BOOST_APPEND'],thread_suffix)) 52 else : 53 libraries.append('boost_regex%s' % env['BOOST_APPEND']) 54 if env['THREADING'] == 'multi': 55 libraries.append('boost_thread%s%s' % (env['BOOST_APPEND'],thread_suffix)) 52 #if env['THREADING'] == 'multi': 53 # libraries.append('boost_regex%s%s' % (env['BOOST_APPEND'],thread_suffix)) 54 #else : 55 # libraries.append('boost_regex%s' % env['BOOST_APPEND']) 56 57 #if env['THREADING'] == 'multi': 58 # libraries.append('boost_thread%s%s' % (env['BOOST_APPEND'],thread_suffix)) 56 59 if '-DHAVE_PYCAIRO' in env['CXXFLAGS']: 57 60 libraries.append([lib for lib in env['LIBS'] if lib.startswith('cairo')])
