summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorStephen M. Webb <stephen.webb@canonical.com>2011-03-15 20:12:12 +0100
committerHenrik Rydberg <rydberg@euromail.se>2011-03-15 20:14:24 +0100
commitf336f545fd5500c72589a96026c6ba6560f4aca4 (patch)
tree583f2df27dc726da53576000733f33c3b961b41a /configure.ac
parentd45deab59ff417025c65dc9551dc3fb133b2de3d (diff)
Add xorg-server-dev dependency
Added a dependency check on xorg-server-dev when building with xi2 support. Signed-off-by: Stephen M. Webb <stephen.webb@canonical.com> Signed-off-by: Henrik Rydberg <rydberg@euromail.se>
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac6
1 files changed, 5 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 7e7fce9..0f4d470 100644
--- a/configure.ac
+++ b/configure.ac
@@ -29,7 +29,11 @@ AC_ARG_WITH([xi], AS_HELP_STRING([--with-xi], [Build with XI2.1 support]))
29AM_CONDITIONAL([HAVE_XI], [test "x$with_xi" != "x"]) 29AM_CONDITIONAL([HAVE_XI], [test "x$with_xi" != "x"])
30 30
31AS_IF([test "x$with_xi" = "xyes"], [ 31AS_IF([test "x$with_xi" = "xyes"], [
32 PKG_CHECK_MODULES(XINPUT, x11 xext [xi >= 1.4.1.99.1] [inputproto >= 2.0.99.1]) 32 PKG_CHECK_MODULES(XINPUT, x11 xext
33 [xi >= 1.4.1.99.1]
34 [inputproto >= 2.0.99.1]
35 [xorg-server])
36
33]) 37])
34 38
35AC_CHECK_PROG([ASCIIDOC], [a2x], [a2x]) 39AC_CHECK_PROG([ASCIIDOC], [a2x], [a2x])