From 817720e1c540ae11b24f0a1db73f4fc73558ae54 Mon Sep 17 00:00:00 2001 From: Dane Springmeyer Date: Thu, 9 Jul 2009 01:16:52 +0000 Subject: [PATCH] increment ABI version numbers --- SConstruct | 2 +- src/SConscript | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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