From 356c1ff8e3c0e6438dc05af4d95578d0a2bee13b Mon Sep 17 00:00:00 2001 From: Nicolas Dufresne Date: Fri, 28 Feb 2025 11:25:00 -0500 Subject: [PATCH] validate: Do not use G_URI_FLAGS_NONE symbol from 2.66 The GStreamer project currently requires GLib 2.64, so just avoid this new API for now. Part-of: --- .../validate/gst/validate/gst-validate-http-actions.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subprojects/gst-devtools/validate/gst/validate/gst-validate-http-actions.c b/subprojects/gst-devtools/validate/gst/validate/gst-validate-http-actions.c index 848938fe5f..f222f7d343 100644 --- a/subprojects/gst-devtools/validate/gst/validate/gst-validate-http-actions.c +++ b/subprojects/gst-devtools/validate/gst/validate/gst-validate-http-actions.c @@ -62,7 +62,7 @@ parse_uri (const gchar * uri, gchar ** host, gint * port, gchar ** path, GUri *guri; gboolean ret = FALSE; - guri = g_uri_parse (uri, G_URI_FLAGS_NONE, error); + guri = g_uri_parse (uri, 0 /* G_URI_FLAGS_NONE in 2.66 */ , error); if (!guri) return FALSE;