From: Andres Freund Date: Fri, 17 Nov 2023 18:23:02 +0000 (-0800) Subject: meson: Change default of 'selinux' feature option to auto X-Git-Tag: REL_17_BETA1~1448 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c04f3de3dca3b54e16d7774885c8b64f90ca259b;p=thirdparty%2Fpostgresql.git 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 --- 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'],