From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:37228) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TYC4a-0002To-5y for qemu-devel@nongnu.org; Tue, 13 Nov 2012 03:42:23 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TYC4X-00012X-3h for qemu-devel@nongnu.org; Tue, 13 Nov 2012 03:42:20 -0500 Received: from mx1.redhat.com ([209.132.183.28]:60922) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TYC4W-00012N-Sk for qemu-devel@nongnu.org; Tue, 13 Nov 2012 03:42:17 -0500 Received: from int-mx10.intmail.prod.int.phx2.redhat.com (int-mx10.intmail.prod.int.phx2.redhat.com [10.5.11.23]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id qAD8gGSe028059 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Tue, 13 Nov 2012 03:42:16 -0500 From: Gerd Hoffmann Date: Tue, 13 Nov 2012 09:42:12 +0100 Message-Id: <1352796133-956-6-git-send-email-kraxel@redhat.com> In-Reply-To: <1352796133-956-1-git-send-email-kraxel@redhat.com> References: <1352796133-956-1-git-send-email-kraxel@redhat.com> Subject: [Qemu-devel] [PATCH 5/6] pixman: build internal version early List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Gerd Hoffmann Patch by Eric Johnson. Signed-off-by: Gerd Hoffmann --- configure | 7 ++++--- 1 files changed, 4 insertions(+), 3 deletions(-) diff --git a/configure b/configure index e7ca78b..fb5f002 100755 --- a/configure +++ b/configure @@ -3953,9 +3953,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 @@ -4153,6 +4150,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" -- 1.7.1