From 6073257bd8766907854ba45643c0453588b0bfc2 Mon Sep 17 00:00:00 2001 From: Nirbheek Chauhan Date: Sun, 23 Jun 2024 03:44:55 +0530 Subject: [PATCH] meson: Fix glib-networking build on non-Linux Part-of: --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index f140fb20a3..d8b6ac928d 100644 --- a/meson.build +++ b/meson.build @@ -238,7 +238,7 @@ giomodules = [] glib_dep = dependency('glib-2.0') if glib_dep.type_name() == 'internal' subp = subproject('glib-networking', required : get_option('tls'), - default_options: ['gnutls=auto', 'openssl=auto']) + default_options: ['gnutls=auto', 'openssl=auto', 'libproxy=auto', 'gnome_proxy=auto']) if subp.found() giomodules += subp.get_variable('giomodules', []) endif