aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAvi Kivity <avi@redhat.com>2009-11-22 15:18:27 +0200
committerAvi Kivity <avi@redhat.com>2009-11-22 15:18:51 +0200
commita6e4c00b28d7d57b133d2d1108c5a0bfc423f0a5 (patch)
tree0bba695f6792903566698f2bce95c54c7a1fc2b5 /configure
parentMerge commit '0e607a80d323ba9f46dee71cd07380c4eb5c2b0a' into upstream-merge (diff)
parentUpdate SeaBIOS to latest (diff)
downloadqemu-kvm-a6e4c00b28d7d57b133d2d1108c5a0bfc423f0a5.tar.gz
qemu-kvm-a6e4c00b28d7d57b133d2d1108c5a0bfc423f0a5.tar.bz2
qemu-kvm-a6e4c00b28d7d57b133d2d1108c5a0bfc423f0a5.zip
Merge commit '1945120112e93aa96af6d6004b36599f783ac563' into upstream-merge
* commit '1945120112e93aa96af6d6004b36599f783ac563': Update SeaBIOS to latest Add test suite for json marshalling Provide marshalling mechanism for json QDict: Introduce qdict_iter() Add a unit test for JSON support Add a QObject JSON wrapper Add a JSON parser Add a JSON message boundary identifier Add a lexer for JSON Add a QBool type Add unit test for QFloat Add a QFloat datatype Allow strings to grow in size Add operations to qlist to allow it to be used as a stack Properly escape QDECREF macro arguments Cleanup configure checks for dup3 and fallocate Conflicts: pc-bios/bios.bin (pick qemu-kvm) Signed-off-by: Avi Kivity <avi@redhat.com>
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure5
1 files changed, 3 insertions, 2 deletions
diff --git a/configure b/configure
index 1948ae958..a3687f964 100755
--- a/configure
+++ b/configure
@@ -1723,7 +1723,7 @@ int main(void)
return 0;
}
EOF
-if $cc $ARCH_CFLAGS -o $TMPE $TMPC 2> /dev/null ; then
+if compile_prog "" "" ; then
fallocate=yes
fi
@@ -1738,7 +1738,7 @@ int main(void)
return 0;
}
EOF
-if $cc $ARCH_CFLAGS -o $TMPE $TMPC 2> /dev/null ; then
+if compile_prog "" "" ; then
dup3=yes
fi
@@ -2258,6 +2258,7 @@ if test `expr "$target_list" : ".*softmmu.*"` != 0 ; then
tools="qemu-nbd\$(EXESUF) qemu-io\$(EXESUF) $tools"
if [ "$check_utests" = "yes" ]; then
tools="check-qint check-qstring check-qdict check-qlist $tools"
+ tools="check-qfloat check-qjson $tools"
fi
elif test "$mingw32" = "yes" ; then
tools="qemu-io\$(EXESUF) $tools"