X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=meson.build;h=2e558b4433c1f778925e6a7449c2bad6e050249e;hb=594e202122638eb955d3bc2326eecd8afda76e81;hp=ada80f31d7b811ff6946bf0c66e815e7907600a3;hpb=6adb5fa877a36014a05a755f1cf12d549c8f0fb3;p=platform%2Fupstream%2Fatk.git diff --git a/meson.build b/meson.build index ada80f3..2e558b4 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('atk', 'c', - version: '2.24.0', + version: '2.25.2', 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', '.')