From patchwork Thu Nov 18 18:06:47 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Arun Bharadwaj X-Patchwork-Id: 72124 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [199.232.76.165]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id E133FB7194 for ; Fri, 19 Nov 2010 05:11:21 +1100 (EST) Received: from localhost ([127.0.0.1]:57002 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PJ8w6-000641-R1 for incoming@patchwork.ozlabs.org; Thu, 18 Nov 2010 13:10:18 -0500 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 Received: from localhost6.localdomain6 ([9.77.206.31]) by d23av01.au.ibm.com (8.14.4/8.13.1/NCO v10.0 AVin) with ESMTP id oAII6mlB002530; Fri, 19 Nov 2010 05:06:49 +1100 To: qemu-devel@nongnu.org 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> User-Agent: StGit/0.15 MIME-Version: 1.0 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6, seldom 2.4 (older, 4) Cc: kwolf@redhat.com Subject: [Qemu-devel] [PATCH 1/6] Make the necessary changes in Makefile and configure file. X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org 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