From 6b3c50fee5df172853df544e702b521da2409df7 Mon Sep 17 00:00:00 2001 From: Rosen Penev Date: Wed, 5 Oct 2022 20:57:57 -0700 Subject: [PATCH] [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 github: #120 --- meson_options.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/meson_options.txt b/meson_options.txt index d21e349c6..f566475ab 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',