summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndres Freund2023-11-17 18:23:02 +0000
committerAndres Freund2023-11-17 18:23:02 +0000
commitc04f3de3dca3b54e16d7774885c8b64f90ca259b (patch)
tree72b692cb70ae6f21124680c84976ff71344cd218
parent3c44e7d8d4fe3381736c4b4daff4be5ff3d1466e (diff)
meson: Change default of 'selinux' feature option to auto
There is really no reason for selinux to behave differently than other options. Reviewed-by: Peter Eisentraut <[email protected]> Discussion: https://postgr.es/m/[email protected]
-rw-r--r--meson_options.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/meson_options.txt b/meson_options.txt
index d2f95cfec36..be1b327f544 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -136,7 +136,7 @@ option('tcl_version', type: 'string', value: 'tcl',
option('readline', type: 'feature', value: 'auto',
description: 'Use GNU Readline or BSD Libedit for editing')
-option('selinux', type: 'feature', value: 'disabled',
+option('selinux', type: 'feature', value: 'auto',
description: 'SELinux support')
option('ssl', type: 'combo', choices: ['auto', 'none', 'openssl'],