[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH v3 08/11] build-sys: add gio-2.0 check
From: |
Marc-André Lureau |
Subject: |
[Qemu-devel] [PATCH v3 08/11] build-sys: add gio-2.0 check |
Date: |
Thu, 21 Feb 2019 12:07:00 +0100 |
GIO is required for the "-display spice-app" backend.
Signed-off-by: Marc-André Lureau <address@hidden>
Tested-by: Victor Toso <address@hidden>
---
configure | 13 +++++++++++++
1 file changed, 13 insertions(+)
diff --git a/configure b/configure
index a61682c3c7..05d72f1c56 100755
--- a/configure
+++ b/configure
@@ -3503,6 +3503,14 @@ for i in $glib_modules; do
fi
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
# size that glib thinks it should be. This catches
# 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
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
if test "$gnutls" = "yes" ; then
echo "CONFIG_GNUTLS=y" >> $config_host_mak
--
2.21.0.rc1
- [Qemu-devel] [PATCH v3 00/11] spice: add -display spice-app, setup and launch a Spice client, Marc-André Lureau, 2019/02/21
- [Qemu-devel] [PATCH v3 01/11] char/spice: trigger HUP event, Marc-André Lureau, 2019/02/21
- [Qemu-devel] [PATCH v3 03/11] spice: avoid spice runtime assert, Marc-André Lureau, 2019/02/21
- [Qemu-devel] [PATCH v3 02/11] char/spice: discard write() if backend is disconnected, Marc-André Lureau, 2019/02/21
- [Qemu-devel] [PATCH v3 04/11] spice: merge options lists, Marc-André Lureau, 2019/02/21
- [Qemu-devel] [PATCH v3 05/11] spice: do not stop spice if VM is paused, Marc-André Lureau, 2019/02/21
- [Qemu-devel] [PATCH v3 06/11] char: move SpiceChardev and open_spice_port() to spice.h header, Marc-André Lureau, 2019/02/21
- [Qemu-devel] [PATCH v3 07/11] char: register spice ports after spice started, Marc-André Lureau, 2019/02/21
- [Qemu-devel] [PATCH v3 08/11] build-sys: add gio-2.0 check,
Marc-André Lureau <=
- [Qemu-devel] [PATCH v3 09/11] qapi: document DisplayType enum, Marc-André Lureau, 2019/02/21
- [Qemu-devel] [PATCH v3 10/11] spice: use a default name for the server, Marc-André Lureau, 2019/02/21
- [Qemu-devel] [PATCH v3 11/11] display: add -display spice-app launching a Spice client, Marc-André Lureau, 2019/02/21
- Re: [Qemu-devel] [PATCH v3 11/11] display: add -display spice-app launching a Spice client, Gerd Hoffmann, 2019/02/21
- Re: [Qemu-devel] [PATCH v3 11/11] display: add -display spice-app launching a Spice client, Marc-André Lureau, 2019/02/21
- Re: [Qemu-devel] [PATCH v3 11/11] display: add -display spice-app launching a Spice client, Gerd Hoffmann, 2019/02/21
- Re: [Qemu-devel] [PATCH v3 11/11] display: add -display spice-app launching a Spice client, Marc-André Lureau, 2019/02/21
- Re: [Qemu-devel] [PATCH v3 11/11] display: add -display spice-app launching a Spice client, Gerd Hoffmann, 2019/02/21
- Re: [Qemu-devel] [PATCH v3 11/11] display: add -display spice-app launching a Spice client, Marc-André Lureau, 2019/02/21