[core] use buffer_eq_icase* funcs
[lighttpd.git] / meson_options.txt
blobbf1192d91d4b35faced7218e03ca97ae1e5e0d6b
1 option('with_bzip',
2         type: 'boolean',
3         value: false,
4         description: 'with bzip2-support for mod_compress [default: off]',
6 option('with_dbi',
7         type: 'boolean',
8         value: false,
9         description: 'with dbi-support for mod_vhostdb_dbi [default: off]',
11 option('with_fam',
12         type: 'boolean',
13         value: false,
14         description: 'fam/gamin for reducing number of stat() calls [default: off]',
16 option('with_gdbm',
17         type: 'boolean',
18         value: false,
19         description: 'gdbm storage for mod_trigger_b4_dl [default: off]',
21 option('with_geoip',
22         type: 'boolean',
23         value: false,
24         description: 'with GeoIP-support mod_geoip [default: off]',
26 option('with_krb5',
27         type: 'boolean',
28         value: false,
29         description: 'with Kerberos5-support for mod_auth [default: off]',
31 option('with_ldap',
32         type: 'boolean',
33         value: false,
34         description: 'with LDAP-support for mod_auth mod_vhostdb_ldap [default: off]',
36 option('with_libev',
37         type: 'boolean',
38         value: false,
39         description: 'libev support for fdevent handlers [default: off]',
41 option('with_libunwind',
42         type: 'boolean',
43         value: false,
44         description: 'with libunwind to print backtraces in asserts [default: off]',
46 option('with_lua',
47         type: 'boolean',
48         value: false,
49         description: 'with lua 5.1 for mod_magnet [default: off]',
51 option('with_maxminddb',
52         type: 'boolean',
53         value: false,
54         description: 'with MaxMind GeoIP2-support mod_maxminddb [default: off]',
56 option('with_memcached',
57         type: 'boolean',
58         value: false,
59         description: 'memcached storage for mod_trigger_b4_dl [default: off]',
61 option('with_mysql',
62         type: 'boolean',
63         value: false,
64         description: 'with mysql-support for mod_vhostdb_mysql [default: off]',
66 option('with_openssl',
67         type: 'boolean',
68         value: false,
69         description: 'with openssl-support [default: off]',
71 option('with_pam',
72         type: 'boolean',
73         value: false,
74         description: 'with PAM-support for mod_auth [default: off]',
76 option('with_pcre',
77         type: 'boolean',
78         value: true,
79         description: 'with regex support [default: on]',
81 option('with_pgsql',
82         type: 'boolean',
83         value: false,
84         description: 'with postgres-support for mod_vhostdb_pgsql [default: off]',
86 option('with_sasl',
87         type: 'boolean',
88         value: false,
89         description: 'with SASL support for mod_authn_sasl [default: off]',
91 #option('with_valgrind',
92 #       type: 'boolean',
93 #       value: false,
94 #       description: 'with internal support for valgrind [default: off]',
96 option('with_webdav_locks',
97         type: 'boolean',
98         value: false,
99         description: 'locks in webdav [default: off]',
101 option('with_webdav_props',
102         type: 'boolean',
103         value: false,
104         description: 'with property-support for mod_webdav [default: off]',
106 option('with_wolfssl',
107         type: 'string',
108         value: 'false',
109         description: 'with wolfSSL-support [default: off]',
111 option('with_xattr',
112         type: 'boolean',
113         value: false,
114         description: 'with xattr-support for the stat-cache [default: off]',
116 option('with_zlib',
117         type: 'boolean',
118         value: true,
119         description: 'with deflate-support for mod_compress [default: on]',
122 option('build_extra_warnings',
123         type: 'boolean',
124         value: false,
125         description: 'extra warnings (only enabled with gcc/clang)',
127 option('warn_cflags',
128         type: 'string',
129         value: '-g -g2 -Wall -Wmissing-declarations -Wcast-align -Wsign-compare -Wnested-externs -Wpointer-arith -D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security',
130         description: 'CFLAGS to use when build_extra_warnings is active',
133 option('build_static',
134         type: 'boolean',
135         value: false,
136         description: 'build a static lighttpd with all modules added',
139 option('moduledir',
140         type: 'string',
141         value: 'lib/lighttpd',
142         description: 'Location to install modules to (relative to prefix)',