From: Juan Quintela Date: Mon, 3 Aug 2009 12:46:32 +0000 (+0200) Subject: Test if we need -lutil in ,/configure X-Git-Tag: v0.12.0-rc0~1650 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=6362a53f55c30b0638b1c5dae9c510a94e2926a9;p=users%2Fdwmw2%2Fqemu.git Test if we need -lutil in ,/configure Signed-off-by: Juan Quintela Signed-off-by: Anthony Liguori Message-Id: --- diff --git a/Makefile.target b/Makefile.target index 10a5ebebde..5928135c57 100644 --- a/Makefile.target +++ b/Makefile.target @@ -395,16 +395,6 @@ ifdef CONFIG_SLIRP QEMU_CFLAGS+=-I$(SRC_PATH)/slirp endif -# specific flags are needed for non soft mmu emulator -ifndef CONFIG_DARWIN -ifndef CONFIG_WIN32 -ifndef CONFIG_SOLARIS -ifndef CONFIG_AIX -LIBS+=-lutil -endif -endif -endif -endif ifdef TARGET_GPROF vl.o: QEMU_CFLAGS+=-p LDFLAGS+=-p diff --git a/configure b/configure index e4f763bdbc..90202540d3 100755 --- a/configure +++ b/configure @@ -1402,6 +1402,11 @@ else exit 1 fi +if test "$darwin" != "yes" -a "$mingw32" != "yes" -a "$solaries" != yes -a \ + "$aix" != "yes" ; then + libs_softmmu="-lutil $libs_softmmu" +fi + # End of CC checks # After here, no more $cc or $ld runs