diff options
author | Stefan Weil | 2009-08-31 22:16:16 +0200 |
---|---|---|
committer | Anthony Liguori | 2009-09-09 21:57:20 +0200 |
commit | c32d766af127f68bb75ba5689f2f5239227bf559 (patch) | |
tree | bb0102921463f768f89f143dda680f42d80b3e82 /configure | |
parent | Fix spelling in comment. (diff) | |
download | qemu-c32d766af127f68bb75ba5689f2f5239227bf559.tar.gz qemu-c32d766af127f68bb75ba5689f2f5239227bf559.tar.xz qemu-c32d766af127f68bb75ba5689f2f5239227bf559.zip |
qemu-io: Improve portability (win32 now supported).
* Add missing include for struct timeval.
* Replace non-portable strsep by local qemu_strsep.
* Use POSIX basename by including libgen.h.
Signed-off-by: Stefan Weil <weil@mail.berlios.de>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -1929,6 +1929,8 @@ if test `expr "$target_list" : ".*softmmu.*"` != 0 ; then if [ "$check_utests" = "yes" ]; then tools="check-qint check-qstring check-qdict $tools" fi + elif test "$mingw32" = "yes" ; then + tools="qemu-io\$(EXESUF) $tools" fi fi echo "TOOLS=$tools" >> $config_host_mak |