Signed-off-by: Marc-André Lureau <marcandre.lur...@redhat.com> --- configure | 7 +++++++ 1 file changed, 7 insertions(+)
diff --git a/configure b/configure index ee6c3c6792a..cd2fc120aed 100755 --- a/configure +++ b/configure @@ -3924,6 +3924,10 @@ if $pkg_config --atleast-version=$glib_req_ver gio-unix-2.0; then gio_libs="$gio_libs $($pkg_config --libs gio-unix-2.0)" fi +if $pkg_config --atleast-version=2.65.0 glib-2.0; then + glib_guri=yes +fi + # Sanity check that the current size_t matches the # size that glib thinks it should be. This catches # problems on multi-arch where people try to build @@ -7377,6 +7381,9 @@ if test "$gio" = "yes" ; then echo "GIO_LIBS=$gio_libs" >> $config_host_mak echo "GDBUS_CODEGEN=$gdbus_codegen" >> $config_host_mak fi +if test "$glib_guri" = "yes" ; then + echo "HAVE_GLIB_GURI=y" >> $config_host_mak +fi echo "CONFIG_TLS_PRIORITY=\"$tls_priority\"" >> $config_host_mak if test "$gnutls" = "yes" ; then echo "CONFIG_GNUTLS=y" >> $config_host_mak -- 2.27.0.221.ga08a83db2b