From patchwork Fri Oct 19 13:32:02 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Paolo Bonzini X-Patchwork-Id: 192708 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 595FF2C008E for ; Sat, 20 Oct 2012 01:00:00 +1100 (EST) Received: from localhost ([::1]:40388 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TPCin-0007kq-7M for incoming@patchwork.ozlabs.org; Fri, 19 Oct 2012 09:34:41 -0400 Received: from eggs.gnu.org ([208.118.235.92]:47100) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TPCic-0007eK-9A for qemu-devel@nongnu.org; Fri, 19 Oct 2012 09:34:36 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TPCiV-0006kB-Gj for qemu-devel@nongnu.org; Fri, 19 Oct 2012 09:34:30 -0400 Received: from mail-pb0-f45.google.com ([209.85.160.45]:36749) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TPCiV-0006Qo-9k for qemu-devel@nongnu.org; Fri, 19 Oct 2012 09:34:23 -0400 Received: by mail-pb0-f45.google.com with SMTP id rp2so437208pbb.4 for ; Fri, 19 Oct 2012 06:34:23 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:from:to:subject:date:message-id:x-mailer:in-reply-to :references; bh=RAtXGyH0ncuVzqH5jUW6cqXyMPhR18hTDRg05BgMc3k=; b=b+DKcRpX+Do4a+ZZ/zzPtKjpWp8uk4Eow7x/DhhATIcH+a/JMCKGntPqMvfzjpoVmt SYT2AbN6/s2TaShqybF/lxrUKRbVrwlwCmdTl86+3nBpqnpX+8v1l52W7nGLlWtWWstH VjpUOxf64NwgkrRoXldJpCBikOVgNHc/ls16aNep7OJ0q26bItJ3oXivmZTtFW1mnM03 5V0HXhd1SSlEqeVmy5vIGE1LQ71um7lR10kdBDR2P6R6mcB+cgnHc96ROfQs99+5xyXb XxXhHJkxEz1r1R92TZG6KVbCWIJMDpG9tk5uvrwRBCoYQikpMOsVI89AORN9/hbPbllJ xxHg== Received: by 10.66.79.168 with SMTP id k8mr3598621pax.12.1350653662971; Fri, 19 Oct 2012 06:34:22 -0700 (PDT) Received: from yakj.usersys.redhat.com (93-34-169-1.ip50.fastwebnet.it. [93.34.169.1]) by mx.google.com with ESMTPS id kr4sm1240726pbc.76.2012.10.19.06.34.15 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 19 Oct 2012 06:34:19 -0700 (PDT) From: Paolo Bonzini To: qemu-devel@nongnu.org Date: Fri, 19 Oct 2012 15:32:02 +0200 Message-Id: <1350653528-5834-24-git-send-email-pbonzini@redhat.com> X-Mailer: git-send-email 1.7.12.1 In-Reply-To: <1350653528-5834-1-git-send-email-pbonzini@redhat.com> References: <1350653528-5834-1-git-send-email-pbonzini@redhat.com> X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 209.85.160.45 Subject: [Qemu-devel] [PATCH 23/29] build: add QAPI files to the tools X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org We need them because qemu-sockets will soon be using SocketAddress. Acked-by: Luiz Capitulino Signed-off-by: Paolo Bonzini --- Makefile.objs | 3 ++- 1 file modificato, 2 inserzioni(+). 1 rimozione(-) diff --git a/Makefile.objs b/Makefile.objs index 74b3542..3f16d67 100644 --- a/Makefile.objs +++ b/Makefile.objs @@ -48,6 +48,7 @@ block-obj-y += $(coroutine-obj-y) $(qobject-obj-y) $(version-obj-y) block-obj-$(CONFIG_POSIX) += posix-aio-compat.o block-obj-$(CONFIG_LINUX_AIO) += linux-aio.o block-obj-y += block/ +block-obj-y += $(qapi-obj-y) qapi-types.o qapi-visit.o ifeq ($(CONFIG_VIRTIO)$(CONFIG_VIRTFS)$(CONFIG_PCI),yyy) # Lots of the fsdev/9pcode is pulled in by vl.c via qemu_fsdev_add. @@ -239,9 +240,9 @@ QEMU_CFLAGS+=$(GLIB_CFLAGS) nested-vars += \ qga-obj-y \ - block-obj-y \ qom-obj-y \ qapi-obj-y \ + block-obj-y \ user-obj-y \ common-obj-y \ extra-obj-y