aboutsummaryrefslogtreecommitdiff
path: root/libxcb/xcb-proto/configure.ac
diff options
context:
space:
mode:
authormarha <marha@users.sourceforge.net>2009-07-25 10:26:41 +0000
committermarha <marha@users.sourceforge.net>2009-07-25 10:26:41 +0000
commit1dad159fe09ac3a88b21b98544880e5ecc0e8d54 (patch)
tree00297a0e4602eb3fda6bd602e585ceab8c9f1024 /libxcb/xcb-proto/configure.ac
parent87db695311f33c4ff560b2cafdbd1d2e421f29bb (diff)
downloadvcxsrv-1dad159fe09ac3a88b21b98544880e5ecc0e8d54.tar.gz
vcxsrv-1dad159fe09ac3a88b21b98544880e5ecc0e8d54.tar.bz2
vcxsrv-1dad159fe09ac3a88b21b98544880e5ecc0e8d54.zip
Added xcb-proto-1.5.tar.gz. Removed old files.
Diffstat (limited to 'libxcb/xcb-proto/configure.ac')
-rw-r--r--libxcb/xcb-proto/configure.ac22
1 files changed, 22 insertions, 0 deletions
diff --git a/libxcb/xcb-proto/configure.ac b/libxcb/xcb-proto/configure.ac
new file mode 100644
index 000000000..f3a489e2b
--- /dev/null
+++ b/libxcb/xcb-proto/configure.ac
@@ -0,0 +1,22 @@
+# -*- Autoconf -*-
+# Process this file with autoconf to produce a configure script.
+
+AC_PREREQ(2.57)
+AC_INIT([XCB Proto],
+ 1.5,
+ [xcb@lists.freedesktop.org])
+AC_CONFIG_SRCDIR([xcb-proto.pc.in])
+AM_INIT_AUTOMAKE([foreign dist-bzip2])
+
+AC_PATH_PROG(XMLLINT, xmllint, no)
+AM_CONDITIONAL(HAVE_XMLLINT, test "x$XMLLINT" != "xno")
+if test "$XMLLINT" = "no"; then
+ AC_MSG_WARN([xmllint not found; unable to validate against schema.])
+fi
+
+AM_PATH_PYTHON([2.5])
+
+xcbincludedir='${datadir}/xcb'
+AC_SUBST(xcbincludedir)
+
+AC_OUTPUT([Makefile src/Makefile xcbgen/Makefile xcb-proto.pc])