Skip to content

Commit

Permalink
[meson] use non string true/false
Browse files Browse the repository at this point in the history
muon (a meson reimplementation) errors as it does not support having a
string for a boolean type.

Signed-off-by: Rosen Penev <[email protected]>

github: lighttpd#120
  • Loading branch information
neheb authored and gstrauss committed Nov 23, 2022
1 parent b3d9145 commit 6b3c50f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions meson_options.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down Expand Up @@ -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',
Expand All @@ -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',
Expand Down Expand Up @@ -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',
Expand Down

0 comments on commit 6b3c50f

Please sign in to comment.