meson: Change default of 'selinux' feature option to auto
authorAndres Freund <[email protected]>
Fri, 17 Nov 2023 18:23:02 +0000 (10:23 -0800)
committerAndres Freund <[email protected]>
Fri, 17 Nov 2023 18:23:02 +0000 (10:23 -0800)
There is really no reason for selinux to behave differently than other
options.

Reviewed-by: Peter Eisentraut <[email protected]>
Discussion: https://postgr.es/m/20231103211601[email protected]

meson_options.txt

index d2f95cfec364feaf5b2c51532a8bdf527dceb36c..be1b327f544d20855e9070e43906c91874afd93d 100644 (file)
@@ -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'],