1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
|
project('atk', 'c',
version: '2.28.1',
license: 'LGPLv2.1+',
default_options: [
'buildtype=debugoptimized',
'warning_level=1',
'c_std=c99',
],
meson_version : '>= 0.40.1')
cc = meson.get_compiler('c')
host_system = host_machine.system()
version = meson.project_version().split('.')
atk_major_version = version[0].to_int()
atk_minor_version = version[1].to_int()
atk_micro_version = version[2].to_int()
atk_interface_age = 1
atk_binary_age = 10000 * atk_major_version + 100 * atk_minor_version + 10 + atk_micro_version
atk_api_version = '1.0'
atk_api_path = 'atk-@0@/atk'.format(atk_api_version)
atk_prefix = get_option('prefix')
atk_libdir = join_paths(atk_prefix, get_option('libdir'))
atk_sysconfdir = join_paths(atk_prefix, get_option('sysconfdir'))
atk_includedir = join_paths(atk_prefix, get_option('includedir'))
atk_datadir = join_paths(atk_prefix, get_option('datadir'))
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', 'atk10')
# Maintain version scheme with libtool
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')
if cc.get_id() == 'msvc'
add_project_arguments([ '-FImsvc_recommended_pragmas.h' ], language: 'c')
endif
# Compiler and linker flags
common_cflags = []
common_ldflags = []
test_cflags = []
# Symbol visibility
if get_option('default_library') != 'static'
if host_system == 'windows'
atk_conf.set('DLL_EXPORT', true)
atk_conf.set('_ATK_EXTERN', '__declspec(dllexport) extern')
if cc.get_id() != 'msvc'
test_cflags += ['-fvisibility=hidden']
endif
else
atk_conf.set('_ATK_EXTERN', '__attribute__((visibility("default"))) extern')
test_cflags += ['-fvisibility=hidden']
endif
endif
# Check all compiler flags
foreach cflag: test_cflags
if cc.has_argument(cflag)
common_cflags += [ cflag ]
endif
endforeach
# Linker flags
if host_machine.system() == 'linux'
foreach ldflag: [ '-Wl,-Bsymbolic', '-Wl,-z,relro', '-Wl,-z,now', ]
if cc.has_argument(ldflag)
common_ldflags += [ ldflag ]
endif
endforeach
endif
# Maintain compatibility with autotools on macOS
if host_machine.system() == 'darwin'
common_ldflags += [ '-compatibility_version 1', '-current_version 1.0', ]
endif
# Functions
checked_funcs = [
'bind_textdomain_codeset',
]
foreach f: checked_funcs
if cc.has_function(f)
atk_conf.set('HAVE_' + f.underscorify().to_upper(), 1)
endif
endforeach
# Dependencies
gobject_req_version = '>= 2.31.2'
gobject_dep = dependency('gobject-2.0', version: gobject_req_version)
# Compat variables for pkgconfig
pkgconf = configuration_data()
pkgconf.set('prefix', atk_prefix)
pkgconf.set('exec_prefix', atk_prefix)
pkgconf.set('libdir', atk_libdir)
pkgconf.set('includedir', atk_includedir)
pkgconf.set('VERSION', meson.project_version())
pkgconf.set('ATK_API_VERSION', atk_api_version)
pkgconf.set('srcdir', '.')
foreach pkg: [ 'atk.pc', ]
configure_file(input: pkg + '.in',
output: pkg,
configuration: pkgconf,
install: true,
install_dir: join_paths(atk_libdir, 'pkgconfig'))
endforeach
gnome = import('gnome')
# Internal configuration header
configure_file(output: 'config.h', configuration: atk_conf)
root_inc = include_directories('.')
subdir('atk')
subdir('tests')
subdir('po')
if get_option('docs')
subdir('docs')
endif
|