[mod_cgi] quiet trace if mod_cgi sends SIGTERM (fixes #2838)
[lighttpd.git] / meson_options.txt
blob6fde5ea2c7b03c348c730b3d5a061996e1f7bcc6
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_pcre',
67         type: 'boolean',
68         value: true,
69         description: 'with regex support [default: on]',
71 option('with_pgsql',
72         type: 'boolean',
73         value: false,
74         description: 'with postgres-support for mod_vhostdb_pgsql [default: off]',
76 #option('with_valgrind',
77 #       type: 'boolean',
78 #       value: false,
79 #       description: 'with internal support for valgrind [default: off]',
81 option('with_webdav_locks',
82         type: 'boolean',
83         value: false,
84         description: 'locks in webdav [default: off]',
86 option('with_webdav_props',
87         type: 'boolean',
88         value: false,
89         description: 'with property-support for mod_webdav [default: off]',
91 option('with_xattr',
92         type: 'boolean',
93         value: false,
94         description: 'with xattr-support for the stat-cache [default: off]',
96 option('with_zlib',
97         type: 'boolean',
98         value: true,
99         description: 'with deflate-support for mod_compress [default: on]',
102 option('build_extra_warnings',
103         type: 'boolean',
104         value: false,
105         description: 'extra warnings (only enabled with gcc/clang)',
107 option('warn_cflags',
108         type: 'string',
109         value: '-g -g2 -Wall -Wmissing-declarations -Wdeclaration-after-statement -Wcast-align -Wsign-compare -Wnested-externs -Wpointer-arith -D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security',
110         description: 'CFLAGS to use when build_extra_warnings is active',
113 option('build_static',
114         type: 'boolean',
115         value: false,
116         description: 'build a static lighttpd with all modules added',
119 option('moduledir',
120         type: 'string',
121         value: 'lib/lighttpd',
122         description: 'Location to install modules to (relative to prefix)',