From patchwork Mon Mar 19 14:54:41 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Eduardo Habkost X-Patchwork-Id: 147542 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 4290BB6EE7 for ; Tue, 20 Mar 2012 01:55:49 +1100 (EST) Received: from localhost ([::1]:56166 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S9dzv-0002sw-6h for incoming@patchwork.ozlabs.org; Mon, 19 Mar 2012 10:55:47 -0400 Received: from eggs.gnu.org ([208.118.235.92]:47355) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S9dzM-0001Uc-U9 for qemu-devel@nongnu.org; Mon, 19 Mar 2012 10:55:36 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1S9dyv-0006BS-ST for qemu-devel@nongnu.org; Mon, 19 Mar 2012 10:55:12 -0400 Received: from mx1.redhat.com ([209.132.183.28]:7777) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S9dyv-0006B6-Jx for qemu-devel@nongnu.org; Mon, 19 Mar 2012 10:54:45 -0400 Received: from int-mx02.intmail.prod.int.phx2.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id q2JEsiFC013582 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Mon, 19 Mar 2012 10:54:44 -0400 Received: from blackpad.lan.raisama.net (ovpn-116-25.ams2.redhat.com [10.36.116.25]) by int-mx02.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id q2JEsgqB013882 for ; Mon, 19 Mar 2012 10:54:43 -0400 Received: by blackpad.lan.raisama.net (Postfix, from userid 500) id E86F72005B5; Mon, 19 Mar 2012 11:54:43 -0300 (BRT) From: Eduardo Habkost To: qemu-devel@nongnu.org Date: Mon, 19 Mar 2012 11:54:41 -0300 Message-Id: <1332168883-9961-2-git-send-email-ehabkost@redhat.com> In-Reply-To: <1332168883-9961-1-git-send-email-ehabkost@redhat.com> References: <1332168883-9961-1-git-send-email-ehabkost@redhat.com> X-Scanned-By: MIMEDefang 2.67 on 10.5.11.12 X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 209.132.183.28 Subject: [Qemu-devel] [PATCH 1/3] qemu-config.h: include qemu-option.h 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 It uses QemuOptList, so it needs qemu-option.h to be included. Signed-off-by: Eduardo Habkost --- qemu-config.h | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/qemu-config.h b/qemu-config.h index 20d707f..ba7796c 100644 --- a/qemu-config.h +++ b/qemu-config.h @@ -1,6 +1,8 @@ #ifndef QEMU_CONFIG_H #define QEMU_CONFIG_H +#include "qemu-option.h" + extern QemuOptsList qemu_fsdev_opts; extern QemuOptsList qemu_virtfs_opts; extern QemuOptsList qemu_spice_opts;