Anthony, So in QEMU 0.15 rc2 it looks like the dependency on gio and gthread has been removed, but glib is still required correct?
########################################## # glib support probe -if $pkg_config --modversion gthread-2.0 gio-2.0 > /dev/null 2>&1 ; then - glib_cflags=`$pkg_config --cflags gthread-2.0 gio-2.0 2>/dev/null` - glib_libs=`$pkg_config --libs gthread-2.0 gio-2.0 2>/dev/null` +if $pkg_config --modversion glib-2.0 > /dev/null 2>&1 ; then + glib_cflags=`$pkg_config --cflags glib-2.0 2>/dev/null` + glib_libs=`$pkg_config --libs glib-2.0 2>/dev/null` ...I had the impression that the glib dependency itself was going away. I'm trying to get qemu integrated into our internal SDK system for building user space and am trying to figure out what is required. Stuart