diff --git a/INSTALL b/INSTALL index 53a405b49..b63ff36da 100644 --- a/INSTALL +++ b/INSTALL @@ -63,7 +63,6 @@ First, here is a quick list of the required software dependencies: - thread - filesystem - regex (built against libicu >= 4.2) - - iostreams - python - required only for python bindings (see below) - libicu >= 4.2 - International Components for Unicode - libpng - PNG Graphics diff --git a/SConstruct b/SConstruct index 5a313066a..7e48dce26 100644 --- a/SConstruct +++ b/SConstruct @@ -1042,7 +1042,6 @@ if not preconfigured: ['system', 'boost/system/system_error.hpp', env['HAS_BOOST_SYSTEM']], ['filesystem', 'boost/filesystem/operations.hpp', True], ['regex', 'boost/regex.hpp', True], - #['iostreams','boost/iostreams/device/mapped_file.hpp',True], ['program_options', 'boost/program_options.hpp', False] ] diff --git a/plugins/input/geos/SConscript b/plugins/input/geos/SConscript index 8619633da..8bb1c0e5b 100644 --- a/plugins/input/geos/SConscript +++ b/plugins/input/geos/SConscript @@ -35,7 +35,6 @@ geos_src = Split( ) libraries = [env['PLUGINS']['geos']['lib']] -libraries.append(['boost_iostreams%s' % env['BOOST_APPEND']]) if env['PLATFORM'] == 'Darwin': libraries.append('mapnik2') diff --git a/plugins/input/shape/SConscript b/plugins/input/shape/SConscript index 851033dec..10f42f450 100644 --- a/plugins/input/shape/SConscript +++ b/plugins/input/shape/SConscript @@ -37,7 +37,7 @@ shape_src = Split( """ ) -libraries = [] #['boost_iostreams%s' % env['BOOST_APPEND']] +libraries = [] if env['PLATFORM'] == 'Darwin': libraries.append('mapnik2') diff --git a/utils/ogrindex/SConscript b/utils/ogrindex/SConscript index 883b3d900..7a9a8d3a5 100644 --- a/utils/ogrindex/SConscript +++ b/utils/ogrindex/SConscript @@ -37,9 +37,8 @@ source = Split( headers = ['#plugins/input/ogr'] + env['CPPPATH'] boost_program_options = 'boost_program_options%s' % env['BOOST_APPEND'] -boost_iostreams = 'boost_iostreams%s' % env['BOOST_APPEND'] boost_filesystem = 'boost_filesystem%s' % env['BOOST_APPEND'] -libraries = [boost_program_options,boost_iostreams,boost_filesystem,env['PLUGINS']['ogr']['lib'],'mapnik2'] +libraries = [boost_program_options,boost_filesystem,env['PLUGINS']['ogr']['lib'],'mapnik2'] boost_system = 'boost_system%s' % env['BOOST_APPEND']