forked from Netatalk/netatalk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
meson_options.txt
387 lines (381 loc) · 8.08 KB
/
meson_options.txt
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
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
# The following options are used to enable or disable netatalk features
# They take the form -Dwith-feature=true || false
# The value: argument corresponds to the default setting
option(
'with-acls',
type: 'boolean',
value: true,
description: 'Enable ACL support',
)
option(
'with-afpstats',
type: 'boolean',
value: true,
description: 'Enable AFP statistics via D-Bus',
)
option(
'with-cnid-dbd-backend',
type: 'boolean',
value: true,
description: 'Compile CNID with Database Daemon Data Store',
)
option(
'with-cnid-last-backend',
type: 'boolean',
value: true,
description: 'Compile LAST CNID scheme',
)
option(
'with-cnid-mysql-backend',
type: 'boolean',
value: true,
description: 'Compile MySQL CNID scheme',
)
option(
'with-cracklib',
type: 'boolean',
value: true,
description: 'Enable cracklib support',
)
option(
'with-cups',
type: 'boolean',
value: true,
description: 'Enable CUPS support',
)
option(
'with-appletalk',
type: 'boolean',
value: false,
description: 'Enable the AppleTalk transport layer, services and utilities',
)
option(
'with-debug',
type: 'boolean',
value: true,
description: 'Enable verbose debug code',
)
option(
'with-debugging',
type: 'boolean',
value: false,
description: 'Enable SIGALARM timers and DSI tickles (eg for debugging with gdb/dbx/...)',
)
option(
'with-dtrace',
type: 'boolean',
value: true,
description: 'Enable dtrace probes',
)
option(
'with-gssapi',
type: 'boolean',
value: true,
description: 'Enable GSSAPI support',
)
option(
'with-init-hooks',
type: 'boolean',
value: true,
description: 'Enable install hooks for the configured init system',
)
option(
'with-install-hooks',
type: 'boolean',
value: true,
description: 'Enable OS specific install hooks',
)
option(
'with-kerberos',
type: 'boolean',
value: true,
description: 'Enable Kerberos V API support',
)
option(
'with-krbV-uam',
type: 'boolean',
value: true,
description: 'Enable build of Kerberos V UAM module',
)
option(
'with-ldap',
type: 'boolean',
value: true,
description: 'Enable LDAP support'
)
option(
'with-ldsoconf',
type: 'boolean',
value: false,
description: 'Enable custom library search path for the run-time linker',
)
option(
'with-libiconv',
type: 'boolean',
value: true,
description: 'Enable iconv support',
)
option(
'with-overwrite',
type: 'boolean',
value: false,
description: 'Overwrite configuration files during installation',
)
option(
'with-pam',
type: 'boolean',
value: true,
description: 'Enable PAM support',
)
option(
'with-quota',
type: 'boolean',
value: true,
description: 'Enable quota support',
)
option(
'with-readmes',
type: 'boolean',
value: true,
description: 'Install README documentation',
)
option(
'with-rpath',
type: 'boolean',
value: true,
description: 'Enable RPATH/RUNPATH',
)
option(
'with-sendfile',
type: 'boolean',
value: true,
description: 'Enable sendfile syscall',
)
option(
'with-shadow',
type: 'boolean',
value: true,
description: 'Enable shadow password support',
)
option(
'with-shell-check',
type: 'boolean',
value: true,
description: 'Enable checking for a valid shell',
)
option(
'with-spotlight',
type: 'boolean',
value: true,
description: 'Enable Spotlight support',
)
option(
'with-tcp-wrappers',
type: 'boolean',
value: true,
description: 'Enable TCP wrappers support',
)
option(
'with-tests',
type: 'boolean',
value: false,
description: 'Compile tests',
)
option(
'with-testsuite',
type: 'boolean',
value: false,
description: 'Compile the AFP test suite',
)
option(
'with-webmin',
type: 'boolean',
value: false,
description: 'Package and install the Netatalk Webmin module',
)
option(
'with-zeroconf',
type: 'boolean',
value: true,
description: 'Enable Zeroconf support',
)
# The following options are used to find dependencies that are installed in
# unconventional locations.
# They take the form -Dwith-dependency-path=/path/to/dependency
# The dependency directory must include lib and include dirs
option(
'with-bdb-path',
type: 'string',
value: '',
description: 'Set path to Berkeley DB installation. Must contain lib and include dirs',
)
option(
'with-bdb-version',
type: 'string',
value: '',
description: 'Set installed Berkeley DB version to link against',
)
option(
'with-cracklib-path',
type: 'string',
value: '',
description: 'Set location of cracklib dictionary',
)
option(
'with-dbus-daemon-path',
type: 'string',
value: '/bin/dbus-daemon',
description: 'Set path to D-Bus daemon',
)
option(
'with-dbus-sysconf-path',
type: 'string',
value: '',
description: 'Set path to D-Bus system bus security configuration directory',
)
option(
'with-docbook-path',
type: 'string',
value: '',
description: 'Set path to Docbook XSL directory',
)
option(
'with-gssapi-path',
type: 'string',
value: '',
description: 'Set path to GSSAPI for Kerberos V UAM. Must contain lib and include dirs',
)
option(
'with-init-dir',
type: 'string',
value: '',
description: 'Set path to OS specific init directory',
)
option(
'with-ldap-path',
type: 'string',
value: '',
description: 'Set path to LDAP library. Must contain lib and include dirs'
)
option(
'with-libgcrypt-path',
type: 'string',
value: '',
description: 'Set path to libgcrypt installation. Must contain lib and include dirs',
)
option(
'with-libiconv-path',
type: 'string',
value: '',
description: 'Set path to libiconv installation. Must contain lib and include dirs',
)
option(
'with-lockfile-path',
type: 'string',
value: '',
description: 'Set path to Netatalk lockfile',
)
option(
'with-pam-path',
type: 'string',
value: '',
description: 'Set path to PAM installation. Must contain lib and include dirs',
)
option(
'with-pam-config-path',
type: 'string',
value: '',
description: 'Set path to PAM config directory',
)
option(
'with-pkgconfdir-path',
type: 'string',
value: '',
description: 'Set path to the package conf dir that overrides sysconfdir',
)
option(
'with-spooldir',
type: 'string',
value: '',
description: 'Set path for spooldir used for CUPS support',
)
option(
'with-statedir-path',
type: 'string',
value: '',
description: 'Set path for statedir used for CNID databases etc.',
)
option(
'with-tracker-install-prefix',
type: 'string',
value: '',
description: 'Set Tracker installation prefix',
)
option(
'with-tracker-prefix',
type: 'string',
value: '',
description: 'Set Tracker prefix',
)
option(
'with-uams-path',
type: 'string',
value: 'libdir / netatalk',
description: 'Set path to UAMs',
)
option(
'with-unicode-data-path',
type: 'string',
value: '',
description: 'Set path to UnicodeData.txt',
)
# The following options offer a choice from pre-defined selections
option(
'with-cnid-default-backend',
type: 'combo',
choices: [
'dbd',
'last',
'mysql',
],
value: 'dbd',
description: 'Set default CNID scheme',
)
option(
'with-init-style',
type: 'array',
choices: [
'none',
'auto',
'debian-sysv',
'freebsd',
'macos-launchd',
'netbsd',
'openbsd',
'openrc',
'solaris',
'systemd',
],
value: ['auto'],
description: 'Use OS specific init config',
)
option(
'with-manual',
type: 'combo',
choices: [
'none',
'local',
'www',
],
value: 'local',
description: 'Build and install the html manual',
)
option(
'with-manual-l10n',
type: 'array',
choices: [
'ja',
],
value: [],
description: 'Choose the localizations of the html manual to build',
)