summaryrefslogtreecommitdiff
path: root/meson_options.txt
diff options
context:
space:
mode:
authorRosen Penev <rosenp@gmail.com>2022-10-05 20:57:57 -0700
committerGlenn Strauss <gstrauss@gluelogic.com>2022-11-23 08:44:48 -0500
commit6b3c50fee5df172853df544e702b521da2409df7 (patch)
tree2954564edd9fc0fd9ddb9c4eb9ae77c7b461d7db /meson_options.txt
parentb3d9145eee28cf9943c1deb4dd38b87ce9a153a6 (diff)
downloadlighttpd-git-6b3c50fee5df172853df544e702b521da2409df7.tar.gz
[meson] use non string true/false
muon (a meson reimplementation) errors as it does not support having a string for a boolean type. Signed-off-by: Rosen Penev <rosenp@gmail.com> github: #120
Diffstat (limited to 'meson_options.txt')
-rw-r--r--meson_options.txt8
1 files changed, 4 insertions, 4 deletions
diff --git a/meson_options.txt b/meson_options.txt
index d21e349c..f566475a 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -25,7 +25,7 @@ option('with_fam',
)
option('with_gnutls',
type: 'boolean',
- value: 'false',
+ value: false,
description: 'with GnuTLS-support [default: off]',
)
option('with_krb5',
@@ -60,7 +60,7 @@ option('with_maxminddb',
)
option('with_mbedtls',
type: 'boolean',
- value: 'false',
+ value: false,
description: 'with mbedTLS-support [default: off]',
)
option('with_mysql',
@@ -75,7 +75,7 @@ option('with_nettle',
)
option('with_nss',
type: 'boolean',
- value: 'false',
+ value: false,
description: 'with NSS-crypto-support [default: off]',
)
option('with_openssl',
@@ -126,7 +126,7 @@ option('with_webdav_props',
)
option('with_wolfssl',
type: 'boolean',
- value: 'false',
+ value: false,
description: 'with wolfSSL-support [default: off]',
)
option('with_xattr',