mirror of
https://github.com/deltachat/deltachat-core.git
synced 2025-10-04 18:29:19 +02:00

These actually switch on and off code, as opposed to the other HAVE detction macros which only switch off header includes (and maybe things would break if they're not there, but that's an existing bug in netpgp). So we want to be sure that they are present when we need them. This is what features are for. This configures these features in delta-core as well.
24 lines
482 B
Meson
24 lines
482 B
Meson
option(
|
|
'bzip2',
|
|
type: 'feature',
|
|
value: 'auto',
|
|
description: 'Include bzip2 support'
|
|
)
|
|
option(
|
|
'openssl-camellia',
|
|
type: 'feature',
|
|
value: 'auto',
|
|
description: 'Whether to compile in support for OpenSSL Camellia'
|
|
)
|
|
option(
|
|
'openssl-idea',
|
|
type: 'feature',
|
|
value: 'auto',
|
|
description: 'Whether to compile in support for OpenSSL IDEA'
|
|
)
|
|
option(
|
|
'static-pic-lib',
|
|
type: 'boolean',
|
|
value: false,
|
|
description: 'Build a static library with PIC support'
|
|
)
|