Changeset 748
- Timestamp:
- 10/08/08 02:30:38 (3 months ago)
- Location:
- trunk
- Files:
-
- 4 modified
-
SConstruct (modified) (1 diff)
-
bindings/python/SConscript (modified) (2 diffs)
-
plugins/input/shape/SConscript (modified) (1 diff)
-
src/datasource_cache.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/SConstruct
r724 r748 190 190 for count, libinfo in enumerate(BOOST_LIBSHEADERS): 191 191 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] : 193 193 color_print(1,'Could not find header or shared library for boost %s, exiting!' % libinfo[0]) 194 194 Exit(1) -
trunk/bindings/python/SConscript
r707 r748 41 41 libraries = ['mapnik','png','jpeg'] 42 42 if 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)) 44 44 else : 45 45 libraries.append('boost_python%s' % env['BOOST_APPEND']) … … 49 49 libraries.append('icudata') 50 50 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)) 52 52 else : 53 53 libraries.append('boost_regex%s' % env['BOOST_APPEND']) 54 54 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)) 56 56 if '-DHAVE_PYCAIRO' in env['CXXFLAGS']: 57 57 libraries.append([lib for lib in env['LIBS'] if lib.startswith('cairo')]) -
trunk/plugins/input/shape/SConscript
r707 r748 41 41 42 42 if 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) ] 44 44 else: 45 45 libraries = ['boost_iostreams%s' % (env['BOOST_APPEND']) ] -
trunk/src/datasource_cache.cpp
r632 r748 126 126 for (filesystem::directory_iterator itr(path);itr!=end_itr;++itr ) 127 127 { 128 if (!is_directory( *itr ) && is_input_plugin(itr->leaf()))128 if (!is_directory( *itr ) && is_input_plugin(itr->path().leaf())) 129 129 { 130 130 try
