diff options
author | Anthony Liguori | 2011-08-21 05:18:37 +0200 |
---|---|---|
committer | Anthony Liguori | 2011-08-21 06:01:03 +0200 |
commit | 14015304b662e8f8ccce46c5a6927af6a14c510b (patch) | |
tree | 1d250e8bcefea6b6e3f40887fbc60e262bd6d241 /configure | |
parent | Reorder default ram_size initialization (diff) | |
download | qemu-14015304b662e8f8ccce46c5a6927af6a14c510b.tar.gz qemu-14015304b662e8f8ccce46c5a6927af6a14c510b.tar.xz qemu-14015304b662e8f8ccce46c5a6927af6a14c510b.zip |
Make glib mandatory and fixup utils appropriately
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -1848,8 +1848,7 @@ fi if $pkg_config --modversion gthread-2.0 > /dev/null 2>&1 ; then glib_cflags=`$pkg_config --cflags gthread-2.0 2>/dev/null` glib_libs=`$pkg_config --libs gthread-2.0 2>/dev/null` - libs_softmmu="$glib_libs $libs_softmmu" - libs_tools="$glib_libs $libs_tools" + LIBS="$glib_libs $LIBS" else echo "glib-2.0 required to compile QEMU" exit 1 |