~ubuntu-branches/ubuntu/trusty/mapnik/trusty-proposed

« back to all changes in this revision

Viewing changes to utils/shapeindex/SConscript

  • Committer: Bazaar Package Importer
  • Author(s): Christophe Sauthier
  • Date: 2009-08-27 00:28:37 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20090827002837-ztqzfg2rmclfh4i9
Tags: 0.6.1-0ubuntu1
* New upstream release.
* Change usr/lib to usr/lib* to enable build on 64 bits systems due to new
  configuration in SConstruct in :
  - debian/libmapnik-dev.install
  - debian/libmapnik0.6.install
  - debian/mapnik-plugin-base

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
 
39
39
boost_program_options = 'boost_program_options%s' % env['BOOST_APPEND']
40
40
boost_iostreams  = 'boost_iostreams%s' % env['BOOST_APPEND']
41
 
libraries =  [boost_program_options,boost_iostreams]
 
41
boost_filesystem = 'boost_filesystem%s' % env['BOOST_APPEND']
 
42
libraries =  [boost_program_options,boost_iostreams,boost_filesystem]
 
43
 
 
44
if env['PLATFORM'] == 'Darwin' and env['BOOST_SYSTEM_REQUIRED']:
 
45
    boost_system = 'boost_system%s' % env['BOOST_APPEND']
 
46
    libraries.append(boost_system)
 
47
 
42
48
 
43
49
shapeindex = env.Program('shapeindex', source, CPPPATH=headers, LIBS=libraries)
44
50