Changeset 703 for trunk/bindings/python/SConscript
- Timestamp:
- 06/29/08 06:58:29 (6 months ago)
- Files:
-
- 1 modified
-
trunk/bindings/python/SConscript (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/bindings/python/SConscript
r701 r703 41 41 libraries = ['mapnik','png','jpeg'] 42 42 if env['THREADING'] == 'multi': 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']) 43 libraries.append('boost_python%s%s' % (env['BOOST_APPEND'],thread_suffix)) 44 else : 45 libraries.append('boost_python%s' % env['BOOST_APPEND']) 47 46 48 47 if env['PLATFORM'] == 'Darwin': 49 libraries.append(env['LIBS'])50 48 libraries.append('icuuc') 51 49 libraries.append('icudata') 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)) 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)) 59 56 if '-DHAVE_PYCAIRO' in env['CXXFLAGS']: 60 57 libraries.append([lib for lib in env['LIBS'] if lib.startswith('cairo')])
