build-sys: add gio-2.0 check
GIO is required for the "-display spice-app" backend. Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Tested-by: Victor Toso <victortoso@redhat.com> Message-id: 20190221110703.5775-9-marcandre.lureau@redhat.com Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
This commit is contained in:
parent
8afbff1652
commit
f876b765ef
13
configure
vendored
13
configure
vendored
@ -3503,6 +3503,14 @@ for i in $glib_modules; do
|
|||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
|
if $pkg_config --atleast-version=$glib_req_ver gio-2.0; then
|
||||||
|
gio=yes
|
||||||
|
gio_cflags=$($pkg_config --cflags gio-2.0)
|
||||||
|
gio_libs=$($pkg_config --libs gio-2.0)
|
||||||
|
else
|
||||||
|
gio=no
|
||||||
|
fi
|
||||||
|
|
||||||
# Sanity check that the current size_t matches the
|
# Sanity check that the current size_t matches the
|
||||||
# size that glib thinks it should be. This catches
|
# size that glib thinks it should be. This catches
|
||||||
# problems on multi-arch where people try to build
|
# problems on multi-arch where people try to build
|
||||||
@ -6520,6 +6528,11 @@ if test "$gtk" = "yes" ; then
|
|||||||
echo "CONFIG_GTK_GL=y" >> $config_host_mak
|
echo "CONFIG_GTK_GL=y" >> $config_host_mak
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
if test "$gio" = "yes" ; then
|
||||||
|
echo "CONFIG_GIO=y" >> $config_host_mak
|
||||||
|
echo "GIO_CFLAGS=$gio_cflags" >> $config_host_mak
|
||||||
|
echo "GIO_LIBS=$gio_libs" >> $config_host_mak
|
||||||
|
fi
|
||||||
echo "CONFIG_TLS_PRIORITY=\"$tls_priority\"" >> $config_host_mak
|
echo "CONFIG_TLS_PRIORITY=\"$tls_priority\"" >> $config_host_mak
|
||||||
if test "$gnutls" = "yes" ; then
|
if test "$gnutls" = "yes" ; then
|
||||||
echo "CONFIG_GNUTLS=y" >> $config_host_mak
|
echo "CONFIG_GNUTLS=y" >> $config_host_mak
|
||||||
|
Loading…
Reference in New Issue
Block a user