From patchwork Wed Nov 14 13:02:39 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gerd Hoffmann X-Patchwork-Id: 198912 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 9E9932C008E for ; Thu, 15 Nov 2012 00:36:05 +1100 (EST) Received: from localhost ([::1]:42566 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TYccw-00052B-Ob for incoming@patchwork.ozlabs.org; Wed, 14 Nov 2012 08:03:34 -0500 Received: from eggs.gnu.org ([208.118.235.92]:45162) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TYccD-0003GI-KO for qemu-devel@nongnu.org; Wed, 14 Nov 2012 08:02:52 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TYccA-00085D-He for qemu-devel@nongnu.org; Wed, 14 Nov 2012 08:02:49 -0500 Received: from mx1.redhat.com ([209.132.183.28]:44958) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TYccA-000853-Ah for qemu-devel@nongnu.org; Wed, 14 Nov 2012 08:02:46 -0500 Received: from int-mx11.intmail.prod.int.phx2.redhat.com (int-mx11.intmail.prod.int.phx2.redhat.com [10.5.11.24]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id qAED2iGD021695 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Wed, 14 Nov 2012 08:02:44 -0500 Received: from rincewind.home.kraxel.org (ovpn-116-71.ams2.redhat.com [10.36.116.71]) by int-mx11.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id qAED2heU022590; Wed, 14 Nov 2012 08:02:43 -0500 Received: by rincewind.home.kraxel.org (Postfix, from userid 500) id 295C442A09; Wed, 14 Nov 2012 14:02:41 +0100 (CET) From: Gerd Hoffmann To: qemu-devel@nongnu.org Date: Wed, 14 Nov 2012 14:02:39 +0100 Message-Id: <1352898161-28960-6-git-send-email-kraxel@redhat.com> In-Reply-To: <1352898161-28960-1-git-send-email-kraxel@redhat.com> References: <1352898161-28960-1-git-send-email-kraxel@redhat.com> X-Scanned-By: MIMEDefang 2.68 on 10.5.11.24 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 209.132.183.28 Cc: Gerd Hoffmann , Eric Johnson Subject: [Qemu-devel] [PATCH 5/7] pixman: build internal version early 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 Signed-off-by: Eric Johnson Signed-off-by: Gerd Hoffmann --- configure | 7 ++++--- 1 files changed, 4 insertions(+), 3 deletions(-) diff --git a/configure b/configure index 0a241eb..f847ee2 100755 --- a/configure +++ b/configure @@ -3956,9 +3956,6 @@ if test "$target_softmmu" = "yes" ; then if test "$smartcard_nss" = "yes" ; then echo "subdir-$target: subdir-libcacard" >> $config_host_mak fi - if test "$pixman" = "internal" ; then - echo "subdir-$target: subdir-pixman" >> $config_host_mak - fi case "$target_arch2" in i386|x86_64) echo "CONFIG_HAVE_CORE_DUMP=y" >> $config_target_mak @@ -4156,6 +4153,10 @@ echo "QEMU_INCLUDES+=$includes" >> $config_target_mak done # for target in $targets +if [ "$pixman" = "internal" ]; then + echo "config-host.h: subdir-pixman" >> $config_host_mak +fi + # build tree in object directory in case the source is not in the current directory DIRS="tests tests/tcg tests/tcg/cris tests/tcg/lm32" DIRS="$DIRS pc-bios/optionrom pc-bios/spapr-rtas"