From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:52243) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XeLpL-0007ZM-Og for qemu-devel@nongnu.org; Wed, 15 Oct 2014 06:29:12 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XeLpG-0004zq-Vi for qemu-devel@nongnu.org; Wed, 15 Oct 2014 06:29:07 -0400 Received: from mx1.redhat.com ([209.132.183.28]:26661) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XeLpG-0004zd-PP for qemu-devel@nongnu.org; Wed, 15 Oct 2014 06:29:02 -0400 From: Gerd Hoffmann Date: Wed, 15 Oct 2014 12:28:57 +0200 Message-Id: <1413368937-12131-2-git-send-email-kraxel@redhat.com> In-Reply-To: <1413368937-12131-1-git-send-email-kraxel@redhat.com> References: <1413368937-12131-1-git-send-email-kraxel@redhat.com> Subject: [Qemu-devel] [PULL 1/1] configure: Prepend pixman and ftd flags to overrule system-provided ones List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Jan Kiszka , Gerd Hoffmann From: Jan Kiszka Other packages may provide includes for pixman as well if the host has a devel package installed. So add ours to the front to unsure that the right version is used. Signed-off-by: Jan Kiszka Signed-off-by: Gerd Hoffmann --- configure | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/configure b/configure index 9ac2600..a9e4d49 100755 --- a/configure +++ b/configure @@ -4211,9 +4211,9 @@ EOF fi fi -# add pixman flags after all config tests are done -QEMU_CFLAGS="$QEMU_CFLAGS $pixman_cflags $fdt_cflags" -libs_softmmu="$libs_softmmu $pixman_libs" +# prepend pixman and ftd flags after all config tests are done +QEMU_CFLAGS="$pixman_cflags $fdt_cflags $QEMU_CFLAGS" +libs_softmmu="$pixman_libs $libs_softmmu" echo "Install prefix $prefix" echo "BIOS directory `eval echo $qemu_datadir`" -- 1.8.3.1