diff options
author | Anthony Liguori | 2011-07-24 00:57:47 +0200 |
---|---|---|
committer | Anthony Liguori | 2011-07-24 01:24:14 +0200 |
commit | 1fc7bd4a86a2bfeafcec29445871eb97469a2699 (patch) | |
tree | 1a084171090114c87821b085db2cf5defa776801 /configure | |
parent | guest-agent: only enable FSFREEZE when it's supported by the kernel (diff) | |
download | qemu-1fc7bd4a86a2bfeafcec29445871eb97469a2699.tar.gz qemu-1fc7bd4a86a2bfeafcec29445871eb97469a2699.tar.xz qemu-1fc7bd4a86a2bfeafcec29445871eb97469a2699.zip |
qemu-ga: remove dependency on gio and gthread
As far as I can tell, there isn't a dependency on gthread. Also, the only use
of gio was to enable GSocket to accept a unix domain socket.
Since GSocket isn't available on OpenSuSE 11.1, let's just remove that
dependency.
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1811,9 +1811,9 @@ fi ########################################## # 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` libs_softmmu="$glib_libs $libs_softmmu" libs_tools="$glib_libs $libs_tools" else |