diff --git a/SConstruct b/SConstruct index 3a487ae1a..7b3f57ba6 100644 --- a/SConstruct +++ b/SConstruct @@ -817,7 +817,7 @@ if not preconfigured: # fetch the mapnik version header in order to set the # ABI version used to build libmapnik.so on linux in src/SConscript abi = conf.GetMapnikLibVersion() - abi_fallback = [0,6,0] + abi_fallback = [0,6,1] if not abi: color_print(1,'Problem encountered parsing mapnik version, falling back to %s' % abi_fallback) env['ABI_VERSION'] = abi_fallback diff --git a/src/SConscript b/src/SConscript index b4178aaef..061e47b1f 100644 --- a/src/SConscript +++ b/src/SConscript @@ -62,7 +62,7 @@ if env['PLATFORM'] == 'Darwin': else: lib_path = 'libmapnik.dylib' linkflags = '-Wl,-install_name,%s' % lib_path - linkflags += ' -current_version 0.6.0 -compatibility_version 0.6.0' + linkflags += ' -current_version 0.6.1 -compatibility_version 0.6.1' elif env['PLATFORM'] == 'SunOS' and env['CXX'].startswith('CC'): linkflags = '-R. -h libmapnik.so' else: # Linux and others