All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] tools/configure: Check if pixman is present on the system
@ 2015-01-13 18:14 Julien Grall
  2015-01-14  7:11 ` Jan Beulich
  0 siblings, 1 reply; 14+ messages in thread
From: Julien Grall @ 2015-01-13 18:14 UTC (permalink / raw)
  To: xen-devel
  Cc: ian.jackson, Julien Grall, wei.liu2, ian.campbell,
	stefano.stabellini

QEMU upstream requires the use of pixman. When pixman is not present the
system, the configure of QEMU will fail with:

ERROR: pixman not present. Your options:
         (1) Preferred: Install the pixman devel package (any recent
             distro should have packages as Xorg needs pixman too).
         (2) Fetch the pixman submodule, using:
             git submodule update --init pixman

I think we can use by default the version on the system. So check it
a Xen configuration time to avoid a build issue later.

Signed-off-by: Julien Grall <julien.grall@linaro.org>

---
    This patch requires to regenerate tools/configure.
---
 tools/configure.ac | 1 +
 1 file changed, 1 insertion(+)

diff --git a/tools/configure.ac b/tools/configure.ac
index 1ac63a3..321b645 100644
--- a/tools/configure.ac
+++ b/tools/configure.ac
@@ -325,6 +325,7 @@ esac
  AX_CHECK_UUID
  AX_CHECK_CURSES
 PKG_CHECK_MODULES(glib, [glib-2.0 >= 2.12])
+PKG_CHECK_MODULES(pixman, pixman-1)
 AX_CHECK_FETCHER
 
 # Checks for libraries.
-- 
2.1.4

^ permalink raw reply related	[flat|nested] 14+ messages in thread

end of thread, other threads:[~2015-01-14 12:42 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-01-13 18:14 [PATCH] tools/configure: Check if pixman is present on the system Julien Grall
2015-01-14  7:11 ` Jan Beulich
2015-01-14 10:39   ` Ian Campbell
2015-01-14 10:43     ` Wei Liu
2015-01-14 11:33       ` Ian Campbell
2015-01-14 11:34       ` Stefano Stabellini
2015-01-14 12:10     ` Olaf Hering
2015-01-14 12:13   ` Julien Grall
2015-01-14 12:24     ` Ian Campbell
2015-01-14 12:28       ` Julien Grall
2015-01-14 12:31         ` Ian Campbell
2015-01-14 12:32           ` Julien Grall
2015-01-14 12:38             ` Ian Campbell
2015-01-14 12:42               ` Julien Grall

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.