From: Paul Brook Date: Wed, 5 May 2010 15:32:59 +0000 (+0100) Subject: Avoid libaio for usermode X-Git-Tag: v0.13.0-rc0~596 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=048d179f20c1499c7f55957df125392de664b6a7;p=thirdparty%2Fqemu.git Avoid libaio for usermode Linux AIO is aonly used by system emulation, so should not be linked into the userspace emulatior. Signed-off-by: Paul Brook --- diff --git a/configure b/configure index 87942f49020..36d028fef69 100755 --- a/configure +++ b/configure @@ -1579,7 +1579,8 @@ int main(void) { io_setup(0, NULL); io_set_eventfd(NULL, 0); eventfd(0, 0); retu EOF if compile_prog "" "-laio" ; then linux_aio=yes - LIBS="$LIBS -laio" + libs_softmmu="$libs_softmmu -laio" + libs_tools="$libs_tools -laio" else if test "$linux_aio" = "yes" ; then feature_not_found "linux AIO"