summaryrefslogtreecommitdiff
path: root/meson_options.txt
diff options
context:
space:
mode:
authorMichael Catanzaro <mcatanzaro@igalia.com>2017-10-21 10:47:01 -0500
committerMichael Catanzaro <mcatanzaro@igalia.com>2017-10-21 10:47:01 -0500
commit28993f8fc623334061f0aafbaba40e17803e36e2 (patch)
treefb83c914d8cc46853929cdcc6e2aa2ac03076f67 /meson_options.txt
parenta6c8a3f9cc3b006c523c348fde54fead7fb4305f (diff)
downloadglib-networking-28993f8fc623334061f0aafbaba40e17803e36e2.tar.gz
Pick defaults for every build option
No more automagic options. This should save developers building the library much pain and suffering. Nothing will get silently disabled. If you don't want a feature, you have to turn it off.
Diffstat (limited to 'meson_options.txt')
-rw-r--r--meson_options.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/meson_options.txt b/meson_options.txt
index 4c47f1e..3805981 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -1,6 +1,6 @@
-option('libproxy_backend', type: 'combo', choices: ['yes', 'no', 'auto'], value: 'auto', description: 'support for libproxy')
-option('gnome_proxy_backend', type: 'combo', choices: ['yes', 'no', 'auto'], value: 'auto', description: 'support for GNOME proxy configuration')
+option('libproxy_backend', type: 'combo', choices: ['yes', 'no', 'auto'], value: 'true', description: 'support for libproxy')
+option('gnome_proxy_backend', type: 'combo', choices: ['yes', 'no', 'auto'], value: 'true', description: 'support for GNOME proxy configuration')
option('tls_support', type: 'boolean', value: true, description: 'support for GNUTLS')
option('ca_certificates_path', type: 'string', value: '', description: 'path to system Certificate Authority list')
-option('pkcs11_support', type: 'combo', choices: ['yes', 'no', 'auto'], value: 'auto', description: 'support for pkcs11')
+option('pkcs11_support', type: 'combo', choices: ['yes', 'no', 'auto'], value: 'true', description: 'support for pkcs11')
option('installed_tests', type: 'boolean', value: false, description: 'enable installed unit tests')