summaryrefslogtreecommitdiff
path: root/meson_options.txt
diff options
context:
space:
mode:
authorMichael Catanzaro <mcatanzaro@igalia.com>2017-10-21 12:06:38 -0500
committerMichael Catanzaro <mcatanzaro@igalia.com>2017-10-21 12:06:38 -0500
commit7b86b38f422458190e77b1eab14d24be80d5dedf (patch)
tree4146409d60c195a7f9730ebdb7cf81b922b9c40b /meson_options.txt
parent6c2b978dccd092eff83b19ac741978869d56b240 (diff)
downloadglib-networking-7b86b38f422458190e77b1eab14d24be80d5dedf.tar.gz
Rework build options handling
Apparently code that expects combo options does not work very well when the options are changed to be boolean options.
Diffstat (limited to 'meson_options.txt')
-rw-r--r--meson_options.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/meson_options.txt b/meson_options.txt
index 3bdf26b..5d856a8 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -1,5 +1,5 @@
-option('libproxy_backend', type: 'boolean', value: true, description: 'support for libproxy')
-option('gnome_proxy_backend', type: 'boolean', value: true, description: 'support for GNOME proxy configuration')
+option('libproxy_support', type: 'boolean', value: true, description: 'support for libproxy')
+option('gnome_proxy_support', type: 'boolean', 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: 'boolean', value: true, description: 'support for pkcs11')