aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndres Freund <andres@anarazel.de>2023-11-17 10:23:02 -0800
committerAndres Freund <andres@anarazel.de>2023-11-17 10:23:02 -0800
commitc04f3de3dca3b54e16d7774885c8b64f90ca259b (patch)
tree72b692cb70ae6f21124680c84976ff71344cd218
parent3c44e7d8d4fe3381736c4b4daff4be5ff3d1466e (diff)
downloadpostgresql-c04f3de3dca3b54e16d7774885c8b64f90ca259b.tar.gz
postgresql-c04f3de3dca3b54e16d7774885c8b64f90ca259b.zip
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 <peter@eisentraut.org> Discussion: https://postgr.es/m/20231103211601.bgqx3cfq6pz2lmjw@awork3.anarazel.de
-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'],