From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from [140.186.70.92] (port=36953 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PJ8so-0004nj-0A for qemu-devel@nongnu.org; Thu, 18 Nov 2010 13:06:55 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PJ8sm-0003jL-9L for qemu-devel@nongnu.org; Thu, 18 Nov 2010 13:06:53 -0500 Received: from e23smtp04.au.ibm.com ([202.81.31.146]:36642) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PJ8sl-0003jC-P8 for qemu-devel@nongnu.org; Thu, 18 Nov 2010 13:06:52 -0500 Received: from d23relay03.au.ibm.com (d23relay03.au.ibm.com [202.81.31.245]) by e23smtp04.au.ibm.com (8.14.4/8.13.1) with ESMTP id oAII1qqv006201 for ; Fri, 19 Nov 2010 05:01:52 +1100 Received: from d23av01.au.ibm.com (d23av01.au.ibm.com [9.190.234.96]) by d23relay03.au.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id oAII6o0D1495100 for ; Fri, 19 Nov 2010 05:06:50 +1100 Received: from d23av01.au.ibm.com (loopback [127.0.0.1]) by d23av01.au.ibm.com (8.14.4/8.13.1/NCO v10.0 AVout) with ESMTP id oAII6o9A002557 for ; Fri, 19 Nov 2010 05:06:50 +1100 From: Arun R Bharadwaj Date: Thu, 18 Nov 2010 23:36:47 +0530 Message-ID: <20101118180647.4434.76290.stgit@localhost6.localdomain6> In-Reply-To: <20101118180547.4434.95904.stgit@localhost6.localdomain6> References: <20101118180547.4434.95904.stgit@localhost6.localdomain6> MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Subject: [Qemu-devel] [PATCH 1/6] Make the necessary changes in Makefile and configure file. List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: kwolf@redhat.com Signed-off-by: Arun R Bharadwaj --- Makefile.objs | 2 +- configure | 2 -- 2 files changed, 1 insertions(+), 3 deletions(-) diff --git a/Makefile.objs b/Makefile.objs index cd5a24b..3b7ec27 100644 --- a/Makefile.objs +++ b/Makefile.objs @@ -9,6 +9,7 @@ qobject-obj-y += qerror.o block-obj-y = cutils.o cache-utils.o qemu-malloc.o qemu-option.o module.o block-obj-y += nbd.o block.o aio.o aes.o osdep.o qemu-config.o +block-obj-$(CONFIG_POSIX) += qemu-thread.o block-obj-$(CONFIG_POSIX) += posix-aio-compat.o block-obj-$(CONFIG_LINUX_AIO) += linux-aio.o @@ -124,7 +125,6 @@ endif common-obj-y += $(addprefix ui/, $(ui-obj-y)) common-obj-y += iov.o acl.o -common-obj-$(CONFIG_THREAD) += qemu-thread.o common-obj-y += notify.o event_notifier.o common-obj-y += qemu-timer.o diff --git a/configure b/configure index a079a49..addf733 100755 --- a/configure +++ b/configure @@ -2456,7 +2456,6 @@ if test "$vnc_png" != "no" ; then fi if test "$vnc_thread" != "no" ; then echo "CONFIG_VNC_THREAD=y" >> $config_host_mak - echo "CONFIG_THREAD=y" >> $config_host_mak fi if test "$fnmatch" = "yes" ; then echo "CONFIG_FNMATCH=y" >> $config_host_mak @@ -2534,7 +2533,6 @@ if test "$xen" = "yes" ; then fi if test "$io_thread" = "yes" ; then echo "CONFIG_IOTHREAD=y" >> $config_host_mak - echo "CONFIG_THREAD=y" >> $config_host_mak fi if test "$linux_aio" = "yes" ; then echo "CONFIG_LINUX_AIO=y" >> $config_host_mak