Release 2.25.90
[platform/upstream/atk.git] / meson.build
index ada80f3..44806d0 100644 (file)
@@ -1,5 +1,5 @@
 project('atk', 'c',
-        version: '2.24.0',
+        version: '2.25.90',
         license: 'LGPLv2.1+',
         default_options: [
           'buildtype=debugoptimized',
@@ -32,10 +32,11 @@ atk_libexecdir = join_paths(atk_prefix, get_option('libexecdir'))
 atk_conf = configuration_data()
 
 atk_conf.set_quoted('VERSION', meson.project_version())
-atk_conf.set_quoted('GETTEXT_PACKAGE', meson.project_name())
+atk_conf.set_quoted('GETTEXT_PACKAGE', 'atk10')
 
 # Maintain version scheme with libtool
-atk_soversion = '0.@0@.@1@'.format((atk_binary_age - atk_interface_age), atk_interface_age)
+atk_soversion = 0
+atk_libversion = '@0@.@1@.@2@'.format(atk_soversion, (atk_binary_age - atk_interface_age), atk_interface_age)
 
 add_project_arguments([ '-DG_DISABLE_SINGLE_INCLUDES', '-DATK_DISABLE_SINGLE_INCLUDES' ], language: 'c')
 
@@ -103,7 +104,6 @@ pkgconf.set('exec_prefix', atk_prefix)
 pkgconf.set('libdir', atk_libdir)
 pkgconf.set('includedir', atk_includedir)
 pkgconf.set('VERSION', meson.project_version())
-pkgconf.set('GLIB_PACKAGES', 'gobject-2.0')
 pkgconf.set('ATK_API_VERSION', atk_api_version)
 pkgconf.set('srcdir', '.')