From patchwork Mon Oct 1 14:52:16 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Paolo Bonzini X-Patchwork-Id: 188308 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 7518B2C00FC for ; Tue, 2 Oct 2012 00:53:15 +1000 (EST) Received: from localhost ([::1]:44356 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TIhMv-0004W8-LN for incoming@patchwork.ozlabs.org; Mon, 01 Oct 2012 10:53:13 -0400 Received: from eggs.gnu.org ([208.118.235.92]:47000) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TIhMX-0003m1-7M for qemu-devel@nongnu.org; Mon, 01 Oct 2012 10:52:58 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TIhMP-0002ho-Gk for qemu-devel@nongnu.org; Mon, 01 Oct 2012 10:52:49 -0400 Received: from mail-da0-f45.google.com ([209.85.210.45]:57249) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TIhMP-0002hg-A8 for qemu-devel@nongnu.org; Mon, 01 Oct 2012 10:52:41 -0400 Received: by dadn15 with SMTP id n15so1562746dad.4 for ; Mon, 01 Oct 2012 07:52:40 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:from:to:cc:subject:date:message-id:x-mailer:in-reply-to :references; bh=l6ziC5/7HAjl9JTQMGMxF+dljHhQkGUwfR642VfXf3o=; b=aSobaqhJAXfrStIlr46tbCfnRAvNX/fhdis/UTm1R5DlEGDcKVWSh9QGoOCOSnrKLZ d+EA8AC+GknWvGb1cOlSFKk2QLFFpGvvgyWdhWQoMzZ0nYfCdDdK0dvKzhZj/D5K+9tA uTWhuATsLzzuy0Hj7AndwGRiXghIqpATZQAUGOkYWvahiBmno3Hh4jO2eXzgrPgqRzTr 32lZPZSn9TpPemcPAjnd9z+miIcGBnvJ8U7m2QWt2QwytMoWv8RrJPS01Ng04mq1LqIs 0B25VR6rIDKqUypSWRO/B+UOXLD4uHl4W8yNSwgyjeQrm0irxqjP6DtXr6mtrdi4SO59 uTBA== Received: by 10.68.116.232 with SMTP id jz8mr41837430pbb.77.1349103160380; Mon, 01 Oct 2012 07:52:40 -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 g1sm10494388paz.18.2012.10.01.07.52.37 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 01 Oct 2012 07:52:39 -0700 (PDT) From: Paolo Bonzini To: qemu-devel@nongnu.org Date: Mon, 1 Oct 2012 16:52:16 +0200 Message-Id: <1349103144-6827-2-git-send-email-pbonzini@redhat.com> X-Mailer: git-send-email 1.7.12 In-Reply-To: <1349103144-6827-1-git-send-email-pbonzini@redhat.com> References: <1349103144-6827-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.210.45 Cc: lcapitulino@redhat.com Subject: [Qemu-devel] [PATCH v2 1/9] 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. Signed-off-by: Paolo Bonzini Acked-by: Luiz Capitulino --- Makefile.objs | 3 ++- 1 file modificato, 2 inserzioni(+). 1 rimozione(-) diff --git a/Makefile.objs b/Makefile.objs index 4412757..03da150 100644 --- a/Makefile.objs +++ b/Makefile.objs @@ -47,6 +47,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. @@ -241,9 +242,9 @@ QEMU_CFLAGS+=$(GLIB_CFLAGS) nested-vars += \ hw-obj-y \ qga-obj-y \ - block-obj-y \ qom-obj-y \ qapi-obj-y \ + block-obj-y \ user-obj-y \ common-obj-y \ extra-obj-y