move SHAPE_MEMORY_MAPPED_FILE to be a global define
This commit is contained in:
parent
cf6e08aa52
commit
4eef244e73
3 changed files with 7 additions and 3 deletions
|
@ -45,9 +45,6 @@ libraries.append('boost_system%s' % env['BOOST_APPEND'])
|
|||
cppdefines = []
|
||||
cxxflags = []
|
||||
|
||||
if env['SHAPE_MEMORY_MAPPED_FILE']:
|
||||
cppdefines.append('-DSHAPE_MEMORY_MAPPED_FILE')
|
||||
|
||||
if env.get('BOOST_LIB_VERSION_FROM_HEADER'):
|
||||
boost_version_from_header = int(env['BOOST_LIB_VERSION_FROM_HEADER'].split('_')[1])
|
||||
if boost_version_from_header < 46:
|
||||
|
|
|
@ -336,6 +336,9 @@ if env['SVG_RENDERER']: # svg backend
|
|||
lib_env.Append(CPPDEFINES = '-DSVG_RENDERER')
|
||||
libmapnik_defines.append('-DSVG_RENDERER')
|
||||
|
||||
if env['SHAPE_MEMORY_MAPPED_FILE']:
|
||||
lib_env.Append(CPPDEFINES = '-DSHAPE_MEMORY_MAPPED_FILE')
|
||||
libmapnik_defines.append('-DSHAPE_MEMORY_MAPPED_FILE')
|
||||
|
||||
if env.get('BOOST_LIB_VERSION_FROM_HEADER'):
|
||||
boost_version_from_header = int(env['BOOST_LIB_VERSION_FROM_HEADER'].split('_')[1])
|
||||
|
|
|
@ -20,6 +20,8 @@
|
|||
*
|
||||
*****************************************************************************/
|
||||
|
||||
#if defined(SHAPE_MEMORY_MAPPED_FILE)
|
||||
|
||||
// mapnik
|
||||
#include <mapnik/debug.hpp>
|
||||
#include <mapnik/util/fs.hpp>
|
||||
|
@ -96,3 +98,5 @@ boost::optional<mapped_region_ptr> mapped_memory_cache::find(std::string const&
|
|||
}
|
||||
|
||||
}
|
||||
|
||||
#endif
|
Loading…
Reference in a new issue