1
0
Fork 0
mirror of https://github.com/deltachat/deltachat-core.git synced 2025-10-04 18:29:19 +02:00
deltachat-core/libs/netpgp/meson_options.txt
Floris Bruynooghe 951d8f584f Use features for openssl-camellia and openssl-idea
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.
2018-09-26 12:34:53 -05:00

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'
)