diff mbox

configure: Prepend pixman and ftd flags to overrule system-provided ones

Message ID 542D06EB.1080908@siemens.com
State New
Headers show

Commit Message

Jan Kiszka Oct. 2, 2014, 8:03 a.m. UTC
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 <jan.kiszka@siemens.com>
---

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 mbox

Patch

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`"