summaryrefslogtreecommitdiff
path: root/meson_options.txt
blob: 6ba39ea48ea0245cb3d2b62d5d080b4399781b16 (plain)
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
option('enable-gssapi',
  type : 'boolean',
  value : true,
  description : 'Build with GSSAPI support'
)

option('krb5-config',
  type : 'string',
  value : '',
  description : 'Where to look for krb5-config, path points to krb5-config installation (defaultly looking in PATH)'
)

option('enable-ntlm',
  type : 'boolean',
  value : false,
  description : 'Build with NTLM support'
)

option('ntlm-auth',
  type : 'string',
  value : '',
  description : 'Where to look for ntlm_auth, path points to ntlm_auth installation (defaultly looking in PATH)'
)

option('enable-tls-check',
  type : 'boolean',
  value : true,
  description : 'Enable TLS support through glib-networking. If you are building a package, you can disable this to allow building libsoup anyway (since glib-networking is not actually required at compile time), but you should be sure to add a runtime dependency on it.'
)

option('enable-gnome',
  type : 'boolean',
  value : true,
  description : 'Build libsoup with GNOME support'
)

option('enable-introspection',
  type : 'boolean',
  value : true,
  description : 'Build GObject Introspection data'
)

option('enable-vala',
  type : 'boolean',
  value : false,
  description : 'Build Vala bindings'
)