-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmeson.build
More file actions
261 lines (238 loc) · 4.53 KB
/
meson.build
File metadata and controls
261 lines (238 loc) · 4.53 KB
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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
project(
'libev',
'c',
version: '4.34',
meson_version: '>=1.2.0',
license: 'BSD-2-Clause OR GPL-2.0-or-later',
default_options: {
'warning_level': '0',
},
)
sources = files(
'ev.c',
'event.c',
)
headers = files(
'ev++.h',
'ev.h',
'event.h',
)
pods = files('ev.pod')
system_headers = [
'stdio.h',
'stdlib.h',
'string.h',
'inttypes.h',
'stdint.h',
'strings.h',
'sys/stat.h',
'sys/types.h',
'unistd.h',
'dlfcn.h',
'sys/inotify.h',
'sys/epoll.h',
'sys/event.h',
'port.h',
'poll.h',
'sys/timerfd.h',
'sys/select.h',
'sys/eventfd.h',
'sys/signalfd.h',
'linux/aio_abi.h',
'linux/fs.h',
]
system_funcs = [
'inotify_init',
'epoll_ctl',
'kqueue',
'port_create',
'poll',
'select',
'eventfd',
'signalfd',
]
cc = meson.get_compiler('c')
rtlib_found = false
link_libraries = []
conf_data = configuration_data()
foreach h : system_headers
have_macro_name = 'HAVE_' + h.to_upper().underscorify()
header_found = cc.has_header(h)
if header_found
conf_data.set10(
have_macro_name,
true,
description: 'Define to 1 if you have the <' + h + '> header file.',
)
endif
endforeach
foreach f : system_funcs
have_func_name = 'HAVE_' + f.to_upper().underscorify()
func_found = cc.has_function(f)
if func_found
conf_data.set10(
have_func_name,
true,
description: 'Define to 1 if you have the \'' + f + '\' function.',
)
endif
endforeach
if cc.has_type(
'__kernel_rwf_t',
prefix: '#include <linux/fs.h>',
)
conf_data.set10(
'HAVE_KERNEL_RWF_T',
true,
description: 'Define to 1 if linux/fs.h defined kernel_rwf_t.',
)
endif
clock_gettime_found = false
if cc.has_function('clock_gettime')
clock_gettime_found = true
else
clock_syscall_source = '''
#include <unistd.h>
#include <sys/syscall.h>
#include <time.h>
int main(void) {
struct timespec ts;
return syscall(SYS_clock_gettime, CLOCK_REALTIME, &ts);
return 0;
}
'''
if cc.links(
clock_syscall_source,
name: 'clock_gettime',
)
conf_data.set10(
'HAVE_CLOCK_SYSCALL',
true,
description: 'Define to 1 to use the syscall interface for clock_gettime.',
)
else
rtlib = cc.find_library(
'rt',
required: false,
)
if rtlib.found()
rtlib_found = true
if cc.has_function(
'clock_gettime',
dependencies: rtlib,
)
link_libraries += rtlib
clock_gettime_found = true
endif
endif
endif
endif
if clock_gettime_found
conf_data.set10(
'HAVE_CLOCK_GETTIME',
true,
description: 'Define to 1 if you have the \'clock_gettime\' function.',
)
endif
nanosleep_found = false
if cc.has_function('nanosleep')
nanosleep_found = true
else
if not rtlib_found
rtlib = cc.find_library(
'rt',
required: false,
)
endif
if rtlib.found()
rtlib_found = true
if cc.has_function(
'nanosleep',
dependencies: rtlib,
)
link_libraries += rtlib
nanosleep_found = true
endif
endif
endif
if nanosleep_found
conf_data.set10(
'HAVE_NANOSLEEP',
true,
description: 'Define to 1 if you have the \'nanosleep\' function.',
)
endif
if rtlib_found
conf_data.set10(
'HAVE_LIBRT',
true,
description: 'Define to 1 if you have the \'rt\' library (-lrt).',
)
endif
link_libraries += cc.find_library(
'm',
required: false,
)
if cc.has_function(
'floor',
dependencies: link_libraries,
)
conf_data.set10(
'HAVE_FLOOR',
true,
description: 'Define to 1 if the floor function is available.',
)
endif
configure_file(
output: 'config.h',
configuration: conf_data,
)
add_project_arguments(
'-DHAVE_CONFIG_H',
language: 'c',
)
libev = library(
'ev',
sources: sources,
version: '4.0.0',
install: true,
dependencies: link_libraries,
)
install_headers(headers)
pod2man_exe = find_program(
'pod2man',
required: false,
)
if pod2man_exe.found()
mandir = get_option('mandir')
manpage_command = [
pod2man_exe,
'-n',
'LIBEV',
'-r',
'libev-' + meson.project_version(),
'-c',
'libev - high performance full featured event loop',
'-s3',
]
custom_target(
'manpage',
output: 'ev.3',
input: pods,
command: manpage_command,
feed: true,
capture: true,
install: true,
install_dir: mandir / 'man3',
install_mode: 'rw-r--r--',
install_tag: 'doc',
)
endif
ev_dep = declare_dependency(
link_with: libev,
include_directories: include_directories('.'),
)
meson.override_dependency(
'ev',
ev_dep,
)