From patchwork Mon Apr 22 18:53:16 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Paolo Bonzini X-Patchwork-Id: 238631 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 4655E2C00E6 for ; Tue, 23 Apr 2013 04:54:23 +1000 (EST) Received: from localhost ([::1]:50849 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UULsb-00010h-H7 for incoming@patchwork.ozlabs.org; Mon, 22 Apr 2013 14:54:21 -0400 Received: from eggs.gnu.org ([208.118.235.92]:44801) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UULs1-0000g3-FI for qemu-devel@nongnu.org; Mon, 22 Apr 2013 14:54:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UULru-0006Pz-2r for qemu-devel@nongnu.org; Mon, 22 Apr 2013 14:53:45 -0400 Received: from mail-wi0-x22d.google.com ([2a00:1450:400c:c05::22d]:48300) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UULrt-0006Ok-EB for qemu-devel@nongnu.org; Mon, 22 Apr 2013 14:53:37 -0400 Received: by mail-wi0-f173.google.com with SMTP id c10so4998412wiw.0 for ; Mon, 22 Apr 2013 11:53:36 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:sender:from:to:cc:subject:date:message-id:x-mailer :in-reply-to:references; bh=JEMVkOW7Zv5OYsQEQXVyLqF0jiqDFm8yZr+A9SwRSuQ=; b=sHpPNlBpNZCgCy7D0MWaZwK6r6VMkErSXZ4Xwghp9AHSoezMcz88DUjWCulD4+HxvQ bxfBXiM2Th7Shj+hb4962p6TgO+Pqq0z7cD7TTwIFhAJnUGs1nNrcaeD+wjKV1sseQ5x NpkeG9z8cy7zMamTvoM3IfUzqVLAPGhkOuB2TdZQXcu+NinRqn4LnD7cGzMbB1a9EmEE xEWuhE8eeU7u94cZW6DKcYmzYaT33V3cVzsqRRJjG0wTkA5Nzfz/uNLLg2+nAb7VChum FEhxtca9wEaM7qZKpQ+ZnO4v6Y9k3D4ZmOOdTWPKnfRztk6W1+IwlJzx9vBtIUXkEcfL okzg== X-Received: by 10.194.158.161 with SMTP id wv1mr18400371wjb.38.1366656815198; Mon, 22 Apr 2013 11:53:35 -0700 (PDT) Received: from yakj.lan (93-34-176-20.ip50.fastwebnet.it. [93.34.176.20]) by mx.google.com with ESMTPSA id q18sm21754078wiw.8.2013.04.22.11.53.33 for (version=TLSv1.2 cipher=RC4-SHA bits=128/128); Mon, 22 Apr 2013 11:53:34 -0700 (PDT) From: Paolo Bonzini To: qemu-devel@nongnu.org Date: Mon, 22 Apr 2013 20:53:16 +0200 Message-Id: <1366656797-3567-2-git-send-email-pbonzini@redhat.com> X-Mailer: git-send-email 1.8.2 In-Reply-To: <1366656797-3567-1-git-send-email-pbonzini@redhat.com> References: <1366656797-3567-1-git-send-email-pbonzini@redhat.com> X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2a00:1450:400c:c05::22d Cc: blauwirbel@gmail.com, sw@weilnetz.de Subject: [Qemu-devel] [PATCH 1/2] add missing inclusions of config-host.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 The next patch will add a dependency of qemu/osdep.h on config-host.h. It could be nicer to use qemu-common.h, but I prefer to be safer this close to hard feature freeze. Signed-off-by: Paolo Bonzini --- qga/channel-posix.c | 1 + tests/libi2c-omap.c | 1 + tests/libqtest.c | 1 + tests/tcg/test-i386-fprem.c | 1 + tests/test-mul64.c | 1 + ui/sdl_zoom.c | 1 + ui/vnc.c | 1 + util/hbitmap.c | 1 + 8 files changed, 8 insertions(+) diff --git a/qga/channel-posix.c b/qga/channel-posix.c index e65dda3..30d978e 100644 --- a/qga/channel-posix.c +++ b/qga/channel-posix.c @@ -5,6 +5,7 @@ #include #include #include +#include "config-host.h" #include "qemu/osdep.h" #include "qemu/sockets.h" #include "qga/channel.h" diff --git a/tests/libi2c-omap.c b/tests/libi2c-omap.c index c52458c..68d40f3 100644 --- a/tests/libi2c-omap.c +++ b/tests/libi2c-omap.c @@ -11,6 +11,7 @@ #include #include +#include "config-host.h" #include "qemu/osdep.h" #include "qemu/bswap.h" #include "libqtest.h" diff --git a/tests/libqtest.c b/tests/libqtest.c index 884f959..b40269e 100644 --- a/tests/libqtest.c +++ b/tests/libqtest.c @@ -28,6 +28,7 @@ #include #include +#include "config-host.h" #include "qemu/compiler.h" #include "qemu/osdep.h" diff --git a/tests/tcg/test-i386-fprem.c b/tests/tcg/test-i386-fprem.c index e91fb1a..b64e842 100644 --- a/tests/tcg/test-i386-fprem.c +++ b/tests/tcg/test-i386-fprem.c @@ -22,6 +22,7 @@ * You should have received a copy of the GNU General Public License * along with this program; if not, see . */ +#include "config-host.h" #include "qemu/compiler.h" #include "qemu/osdep.h" #include diff --git a/tests/test-mul64.c b/tests/test-mul64.c index a0a17f7..9a6a1ec 100644 --- a/tests/test-mul64.c +++ b/tests/test-mul64.c @@ -8,6 +8,7 @@ #include #include +#include "config-host.h" #include "qemu/host-utils.h" #include "qemu/osdep.h" diff --git a/ui/sdl_zoom.c b/ui/sdl_zoom.c index 2625c45..b9b7322 100644 --- a/ui/sdl_zoom.c +++ b/ui/sdl_zoom.c @@ -11,6 +11,7 @@ * */ +#include "config-host.h" #include "sdl_zoom.h" #include "qemu/osdep.h" #include diff --git a/ui/vnc.c b/ui/vnc.c index 8ee66b7..e7c28f2 100644 --- a/ui/vnc.c +++ b/ui/vnc.c @@ -24,6 +24,7 @@ * THE SOFTWARE. */ +#include "config-host.h" #include "vnc.h" #include "vnc-jobs.h" #include "sysemu/sysemu.h" diff --git a/util/hbitmap.c b/util/hbitmap.c index d936831..fc04d3b 100644 --- a/util/hbitmap.c +++ b/util/hbitmap.c @@ -9,6 +9,7 @@ * later. See the COPYING file in the top-level directory. */ +#include "config-host.h" #include #include #include