From c04f3de3dca3b54e16d7774885c8b64f90ca259b Mon Sep 17 00:00:00 2001 From: Andres Freund Date: Fri, 17 Nov 2023 10:23:02 -0800 Subject: [PATCH] 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 Discussion: https://postgr.es/m/20231103211601.bgqx3cfq6pz2lmjw@awork3.anarazel.de --- meson_options.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson_options.txt b/meson_options.txt index d2f95cfec3..be1b327f54 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'],