From mboxrd@z Thu Jan 1 00:00:00 1970 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 From: Gerd Hoffmann 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> Subject: [Qemu-devel] [PATCH 5/7] 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 , Eric Johnson 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" -- 1.7.1