1option('gssapi', 2 type : 'feature', 3 value : 'auto', 4 description : 'Build with GSSAPI support' 5) 6 7option('krb5_config', 8 type : 'string', 9 value : '', 10 description : 'Where to look for krb5-config, path points to krb5-config installation (defaultly looking in PATH)' 11) 12 13option('ntlm', 14 type : 'feature', 15 value : 'auto', 16 description : 'Build with NTLM support' 17) 18 19option('ntlm_auth', 20 type : 'string', 21 value : 'ntlm_auth', 22 description : 'Where to look for ntlm_auth, path points to ntlm_auth installation (defaultly looking in PATH)' 23) 24 25option('brotli', 26 type : 'feature', 27 value : 'auto', 28 description : 'Build with Brotli decompression support' 29) 30 31option('tls_check', 32 type : 'boolean', 33 value : true, 34 description : 'Enable TLS support through glib-networking. If you are building a package, you can disable this to allow building libsoup anyway (since glib-networking is not actually required at compile time), but you should be sure to add a runtime dependency on it.' 35) 36 37option('gnome', 38 type : 'boolean', 39 value : true, 40 description : 'Build libsoup with GNOME support' 41) 42 43option('introspection', 44 type : 'feature', 45 value : 'auto', 46 yield : true, 47 description : 'Build GObject Introspection data' 48) 49 50option('vapi', 51 type : 'feature', 52 value : 'auto', 53 description : 'Build Vala bindings' 54) 55 56option('gtk_doc', 57 type: 'boolean', 58 value: false, 59 description: 'Enable generating the API reference' 60) 61 62option('tests', 63 type: 'boolean', 64 value: true, 65 description: 'Enable unit tests compilation' 66) 67 68option('installed_tests', 69 type: 'boolean', 70 value: false, 71 description: 'Install tests for as-installed testing' 72) 73