[glib-networking/mcatanzaro/proxies: 1/2] Disable environment proxy resolver on Windows




commit 0dc3eb5be67ccfbda65823e15527edafe8c96015
Author: Michael Catanzaro <mcatanzaro redhat com>
Date:   Fri Feb 11 09:34:59 2022 -0600

    Disable environment proxy resolver on Windows
    
    It ought to work just fine on Windows, but the CI is crashing, and I
    don't know how to debug Windows CI.
    
    Part-of: <https://gitlab.gnome.org/GNOME/glib-networking/-/merge_requests/203>

 meson.build | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)
---
diff --git a/meson.build b/meson.build
index e2a021eb..a28783e0 100644
--- a/meson.build
+++ b/meson.build
@@ -179,7 +179,12 @@ if gsettings_desktop_schemas_dep.found()
 subdir('proxy/gnome')
 endif
 
-subdir('proxy/environment')
+# FIXME: This ought to work on Windows.
+# https://gitlab.gnome.org/GNOME/glib-networking/-/issues/185
+if not ['windows'].contains(host_system)
+  subdir('proxy/environment')
+endif
+
 subdir('proxy/tests')
 
 subdir('tls/base')


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]