spice-gtk code uses the G_DEFINE_BOXED_TYPE macro, that is defined in glib2 2.26, so configure should really check for this minimum version instead of 2.22.
Signed-off-by: Andrea Spadaccini <[email protected]> --- configure.ac | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/configure.ac b/configure.ac index 98b91de..8da2dcc 100644 --- a/configure.ac +++ b/configure.ac @@ -220,7 +220,7 @@ else EXTERNAL_PNP_IDS="$with_pnp_ids_path" fi -PKG_CHECK_MODULES(GLIB2, glib-2.0 >= 2.22) +PKG_CHECK_MODULES(GLIB2, glib-2.0 >= 2.26) AC_SUBST(GLIB2_CFLAGS) AC_SUBST(GLIB2_LIBS) -- 1.7.3.1 _______________________________________________ Spice-devel mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/spice-devel
