From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:39900) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XZbMp-0002sC-S4 for qemu-devel@nongnu.org; Thu, 02 Oct 2014 04:04:09 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XZbMj-0006Cz-Vm for qemu-devel@nongnu.org; Thu, 02 Oct 2014 04:04:03 -0400 Received: from david.siemens.de ([192.35.17.14]:49390) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XZbMj-0006Ct-LX for qemu-devel@nongnu.org; Thu, 02 Oct 2014 04:03:57 -0400 Message-ID: <542D06EB.1080908@siemens.com> Date: Thu, 02 Oct 2014 10:03:55 +0200 From: Jan Kiszka MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Subject: [Qemu-devel] [PATCH] configure: Prepend pixman and ftd flags to overrule system-provided ones List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Gerd Hoffmann Cc: qemu-devel 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 --- Replaces "configure: Filter out system includes for pixman" And, yes, the scenario is too old distro pixman. 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.1.1.298.ge7eed54