summaryrefslogtreecommitdiff
path: root/m4/spice-deps.m4
diff options
context:
space:
mode:
Diffstat (limited to 'm4/spice-deps.m4')
-rw-r--r--m4/spice-deps.m412
1 files changed, 12 insertions, 0 deletions
diff --git a/m4/spice-deps.m4 b/m4/spice-deps.m4
index b891aef..0815766 100644
--- a/m4/spice-deps.m4
+++ b/m4/spice-deps.m4
@@ -129,3 +129,15 @@ AC_DEFUN([SPICE_CHECK_OPENGL], [
AS_VAR_APPEND([$1_CFLAGS], [" $GL_CFLAGS"])
AS_VAR_APPEND([$1_LIBS], [" $GL_LIBS"])
])
+
+
+# SPICE_CHECK_PIXMAN(PREFIX)
+# --------------------------
+# Check for the availability of pixman. If found, it will append the flags to
+# use to the $PREFIX_CFLAGS and $PREFIX_LIBS variables.
+#---------------------------
+AC_DEFUN([SPICE_CHECK_PIXMAN], [
+ PKG_CHECK_MODULES(PIXMAN, pixman-1 >= 0.17.7)
+ AS_VAR_APPEND([$1_CFLAGS], [" $PIXMAN_CFLAGS"])
+ AS_VAR_APPEND([$1_LIBS], [" $PIXMAN_LIBS"])
+])