-
Notifications
You must be signed in to change notification settings - Fork 0
/
meson.build
231 lines (197 loc) · 7.22 KB
/
meson.build
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
project(
'ladi-jack-tools',
['c', 'cpp'],
meson_version: '>=0.58.0',
license: ['GPL2+'],
version: '2.23.0',
)
os = build_machine.system()
cc = meson.get_compiler('c')
alsa_required = false
if get_option('alsa_in_out').enabled() or get_option('zalsa').enabled()
alsa_required = true
endif
lib_rt_required = false
if get_option('zalsa').enabled()
lib_rt_required = true
endif
libsamplerate_required = false
if get_option('alsa_in_out').enabled() or get_option('jack_netsource').enabled()
libsamplerate_required = true
endif
dep_jack_ = dependency('jack')
dep_jack = declare_dependency(
dependencies: dep_jack_,
include_directories: include_directories(get_option('prefix') + '/include'),
link_args: '-L' + get_option('prefix') + '/lib',
variables: {
'libdir': dep_jack_.get_variable('libdir'),
'includedir': dep_jack_.get_variable('includedir'),
'jack_implementation': dep_jack_.get_variable('jack_implementation'),
}
)
include_directories_common = include_directories(
dep_jack_.get_variable('includedir'),
get_option('prefix') + '/include',
)
if host_machine.system() == 'windows' and host_machine.cpu_family() == 'x86_64'
lib_jackserver_suffix = '64'
else
lib_jackserver_suffix = ''
endif
lib_jackserver_dep = cc.find_library('jackserver' + lib_jackserver_suffix,
dirs: [dep_jack.get_variable('libdir'), get_option('prefix') + '/lib'],
required: true
)
lib_jackserver = declare_dependency(
dependencies: lib_jackserver_dep,
include_directories: include_directories_common,
)
lib_jacknet_dep = cc.find_library('jacknet',
dirs: [dep_jack.get_variable('libdir'), get_option('prefix') + '/lib'],
required: get_option('jack_net')
)
lib_jacknet_deps = [lib_jacknet_dep]
if host_machine.system() == 'windows'
lib_jacknet_deps += cc.find_library('ws2_32')
endif
lib_jacknet = declare_dependency(
dependencies: lib_jacknet_deps,
include_directories: include_directories_common,
)
jack_implementation = dep_jack.get_variable('jack_implementation')
if jack_implementation == ''
message('JACK implementation: unknown')
else
message('JACK implementation: ' + jack_implementation)
endif
has_jack1_internal_client = cc.compiles(
'''
#include <stdio.h>
#include <jack/jack.h>
#include <jack/intclient.h>
int main (int argc, char *argv[]) {
const char *client_name;
jack_client_t *client;
jack_status_t status;
jack_intclient_t intclient;
client_name = "foo";
client = jack_client_open(client_name, JackNoStartServer, &status);
jack_internal_client_handle(client, client_name, &status, &intclient);
}
''',
dependencies: [dep_jack],
include_directories: include_directories_common,
)
message('Provides jack1-style jack_internal_client_handle(): ' + has_jack1_internal_client.to_string())
has_jack2_internal_client = cc.compiles(
'''
#include <jack/jack.h>
#include <jack/intclient.h>
int main (int argc, char *argv[]) {
const char *client_name;
jack_client_t *client;
jack_status_t status;
jack_intclient_t intclient;
client_name = "foo";
client = jack_client_open(client_name, JackNoStartServer, &status);
intclient = jack_internal_client_handle(client, client_name, &status);
}
''',
dependencies: [dep_jack],
include_directories: include_directories_common,
)
message('Provides jack2-style jack_internal_client_handle(): ' + has_jack2_internal_client.to_string())
has_jack_jslist = cc.compiles(
'''
#include <jack/jack.h>
#include <jack/jslist.h>
int main (int argc, char *argv[]) {
}
''',
dependencies: [dep_jack],
include_directories: include_directories_common,
)
message('Provides usable jack/jslist.h: ' + has_jack_jslist.to_string())
has_jack_uuid = cc.compiles(
'''
#include <jack/jack.h>
#include <jack/uuid.h>
int main (int argc, char *argv[]) {
jack_status_t status;
jack_client_t *client = jack_client_open("foo", JackNoStartServer, &status);
jack_port_t *port = jack_port_by_name (client, "test");
jack_uuid_t uuid = jack_port_uuid (port);
}
''',
dependencies: [dep_jack],
include_directories: include_directories_common,
)
message('Provides usable jack/uuid.h: ' + has_jack_uuid.to_string())
has_jackctl_server_create2 = cc.has_function('jackctl_server_create2',
dependencies: [lib_jackserver],
include_directories: include_directories_common,
prefix: '#include <jack/control.h>'
)
dep_alsa = dependency('alsa', version: '>=1.0.18', required: alsa_required)
dep_opus = dependency('opus', version: '>=0.9.0', required: get_option('opus_support'))
header_opus_custom = cc.check_header('opus/opus_custom.h')
dep_readline = dependency('readline', required: get_option('readline_support'))
dep_samplerate = dependency('samplerate', required: libsamplerate_required)
dep_sndfile = dependency('sndfile', required: get_option('jack_rec'))
dep_threads = dependency('threads')
lib_m = cc.find_library('m')
lib_rt = cc.find_library('rt', required: lib_rt_required)
lib_zita_alsa_pcmi = cc.find_library('zita-alsa-pcmi', required: get_option('zalsa'))
lib_zita_resampler = cc.find_library('zita-resampler', required: get_option('zalsa'))
has_ppoll = cc.has_function('ppoll', prefix: '#define _GNU_SOURCE\n#include <sys/poll.h>')
build_alsa_in_out = false
if get_option('alsa_in_out').enabled() or (
get_option('alsa_in_out').auto() and dep_alsa.found() and dep_samplerate.found() and has_jack_jslist
)
build_alsa_in_out = true
endif
build_jack_net = false
if get_option('jack_net').enabled() or (get_option('jack_net').auto() and lib_jacknet_dep.found())
build_jack_net = true
endif
build_jack_netsource = false
if get_option('jack_netsource').enabled() or (get_option('jack_netsource').auto() and dep_samplerate.found() and has_jack_jslist)
build_jack_netsource = true
endif
opus_support = false
if get_option('opus_support').enabled() or (get_option('opus_support').auto() and dep_opus.found() and header_opus_custom)
opus_support = true
endif
readline_support = false
if get_option('readline_support').enabled() or (get_option('readline_support').auto() and dep_readline.found())
readline_support = true
endif
build_jack_rec = false
if get_option('jack_rec').enabled() or (get_option('jack_rec').auto() and dep_sndfile.found())
build_jack_rec = true
endif
build_zalsa = false
if get_option('zalsa').enabled() or (
get_option('zalsa').auto() and dep_alsa.found() and lib_rt.found() and lib_zita_alsa_pcmi.found() and lib_zita_resampler.found() and has_jack_uuid
)
build_zalsa = true
endif
message('Build alsa_in and alsa_out executables: ' + build_alsa_in_out.to_string())
message('Build jack_net_master and jack_net_slave executables: ' + build_jack_net.to_string())
message('Build jack_netsource executable: ' + build_jack_netsource.to_string())
if build_jack_netsource
message('Build jack_netsource with opus support: ' + opus_support.to_string())
endif
message('Build jack_rec executable: ' + build_jack_rec.to_string())
message('Build jack_transport with readline support: ' + readline_support.to_string())
message('Build ZALSA internal clients: ' + build_zalsa.to_string())
conf_data = configuration_data()
conf_data.set('VERSION', meson.project_version())
conf_data.set('DATE', '2023')
c_args_common = [
'-D__PROJECT_VERSION__="@0@"'.format(conf_data.get('VERSION')),
]
subdir('tools')
subdir('example-clients')
subdir('man')