[stat_cache] FAM: ignore event with no valid match
[lighttpd.git] / meson_options.txt
blob5da8b69a4cd3fec79200741ad99b973e53f40b06
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_memcached',
52         type: 'boolean',
53         value: false,
54         description: 'memcached storage for mod_trigger_b4_dl [default: off]',
56 option('with_mysql',
57         type: 'boolean',
58         value: false,
59         description: 'with mysql-support for mod_vhostdb_mysql [default: off]',
61 option('with_openssl',
62         type: 'boolean',
63         value: false,
64         description: 'with openssl-support [default: off]',
66 option('with_pam',
67         type: 'boolean',
68         value: false,
69         description: 'with PAM-support for mod_auth [default: off]',
71 option('with_pcre',
72         type: 'boolean',
73         value: true,
74         description: 'with regex support [default: on]',
76 option('with_pgsql',
77         type: 'boolean',
78         value: false,
79         description: 'with postgres-support for mod_vhostdb_pgsql [default: off]',
81 option('with_sasl',
82         type: 'boolean',
83         value: false,
84         description: 'with SASL support for mod_authn_sasl [default: off]',
86 #option('with_valgrind',
87 #       type: 'boolean',
88 #       value: false,
89 #       description: 'with internal support for valgrind [default: off]',
91 option('with_webdav_locks',
92         type: 'boolean',
93         value: false,
94         description: 'locks in webdav [default: off]',
96 option('with_webdav_props',
97         type: 'boolean',
98         value: false,
99         description: 'with property-support for mod_webdav [default: off]',
101 option('with_wolfssl',
102         type: 'string',
103         value: 'false',
104         description: 'with wolfSSL-support [default: off]',
106 option('with_xattr',
107         type: 'boolean',
108         value: false,
109         description: 'with xattr-support for the stat-cache [default: off]',
111 option('with_zlib',
112         type: 'boolean',
113         value: true,
114         description: 'with deflate-support for mod_compress [default: on]',
117 option('build_extra_warnings',
118         type: 'boolean',
119         value: false,
120         description: 'extra warnings (only enabled with gcc/clang)',
122 option('warn_cflags',
123         type: 'string',
124         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',
125         description: 'CFLAGS to use when build_extra_warnings is active',
128 option('build_static',
129         type: 'boolean',
130         value: false,
131         description: 'build a static lighttpd with all modules added',
134 option('moduledir',
135         type: 'string',
136         value: 'lib/lighttpd',
137         description: 'Location to install modules to (relative to prefix)',